pom.xml 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>com.xt.js.gkaq</groupId>
  5. <artifactId>gkaq-frame</artifactId>
  6. <version>0.0.1-SNAPSHOT</version>
  7. <dependencies>
  8. <dependency>
  9. <groupId>org.springframework</groupId>
  10. <artifactId>spring-context</artifactId>
  11. </dependency>
  12. <dependency>
  13. <groupId>javax.servlet</groupId>
  14. <artifactId>servlet-api</artifactId>
  15. <scope>provided</scope>
  16. </dependency>
  17. <dependency>
  18. <groupId>org.apache.shiro</groupId>
  19. <artifactId>shiro-core</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>org.apache.shiro</groupId>
  23. <artifactId>shiro-spring</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.apache.shiro</groupId>
  27. <artifactId>shiro-web</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.yuanxd.tools</groupId>
  31. <artifactId>x-tools-utils</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.fasterxml.jackson.core</groupId>
  35. <artifactId>jackson-core</artifactId>
  36. <scope>compile</scope>
  37. </dependency>
  38. <dependency>
  39. <groupId>com.fasterxml.jackson.core</groupId>
  40. <artifactId>jackson-databind</artifactId>
  41. <scope>compile</scope>
  42. </dependency>
  43. <dependency>
  44. <groupId>com.xt.js.gkaq.common</groupId>
  45. <artifactId>gkaq-common</artifactId>
  46. <version>0.0.1-SNAPSHOT</version>
  47. </dependency>
  48. </dependencies>
  49. <dependencyManagement>
  50. <dependencies>
  51. <dependency>
  52. <groupId>com.xt.js.gkaq</groupId>
  53. <artifactId>gkaq-bom</artifactId>
  54. <version>0.0.1-SNAPSHOT</version>
  55. <type>pom</type>
  56. <scope>import</scope>
  57. </dependency>
  58. </dependencies>
  59. </dependencyManagement>
  60. <distributionManagement>
  61. <repository>
  62. <id>xt-repository</id>
  63. <name>xt Repository</name>
  64. <url>${deploy.url}</url>
  65. </repository>
  66. <snapshotRepository>
  67. <id>xt-repository-snapshots</id>
  68. <name>xt Repository Snapshots</name>
  69. <url>${deploy.snapshots.url}</url>
  70. </snapshotRepository>
  71. </distributionManagement>
  72. <build>
  73. <plugins>
  74. <plugin>
  75. <groupId>org.apache.maven.plugins</groupId>
  76. <artifactId>maven-surefire-plugin</artifactId>
  77. <configuration>
  78. <skipTests>true</skipTests>
  79. </configuration>
  80. </plugin>
  81. <plugin>
  82. <groupId>org.apache.maven.plugins</groupId>
  83. <artifactId>maven-source-plugin</artifactId>
  84. <executions>
  85. <execution>
  86. <id>attach-sources</id>
  87. <goals>
  88. <goal>jar</goal>
  89. </goals>
  90. </execution>
  91. </executions>
  92. </plugin>
  93. <plugin>
  94. <artifactId>maven-war-plugin</artifactId>
  95. </plugin>
  96. <!-- compiler插件, 设定JDK版本 -->
  97. <plugin>
  98. <groupId>org.mybatis.generator</groupId>
  99. <artifactId>mybatis-generator-maven-plugin</artifactId>
  100. <version>1.3.2</version>
  101. <dependencies>
  102. <dependency>
  103. <groupId>com.oracle</groupId>
  104. <artifactId>ojdbc6</artifactId>
  105. <version>11.2.0</version>
  106. </dependency>
  107. <dependency>
  108. <groupId>com.h2database</groupId>
  109. <artifactId>h2</artifactId>
  110. <version>1.4.192</version>
  111. </dependency>
  112. </dependencies>
  113. <configuration>
  114. <configurationFile>${basedir}\src\main\resources\generatorConfig.xml</configurationFile>
  115. <overwrite>true</overwrite>
  116. </configuration>
  117. </plugin>
  118. </plugins>
  119. </build>
  120. <properties>
  121. <project.build.sourceEncoding>GBK</project.build.sourceEncoding>
  122. </properties>
  123. </project>