pom.xml 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  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>org.springframework</groupId>
  14. <artifactId>spring-test</artifactId>
  15. <scope>test</scope>
  16. </dependency>
  17. <dependency>
  18. <groupId>javax.servlet</groupId>
  19. <artifactId>servlet-api</artifactId>
  20. <scope>provided</scope>
  21. </dependency>
  22. <dependency>
  23. <groupId>org.apache.shiro</groupId>
  24. <artifactId>shiro-core</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.apache.shiro</groupId>
  28. <artifactId>shiro-spring</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.apache.shiro</groupId>
  32. <artifactId>shiro-web</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>com.yuanxd.tools</groupId>
  36. <artifactId>x-tools-utils</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>com.fasterxml.jackson.core</groupId>
  40. <artifactId>jackson-core</artifactId>
  41. <scope>compile</scope>
  42. </dependency>
  43. <dependency>
  44. <groupId>com.fasterxml.jackson.core</groupId>
  45. <artifactId>jackson-databind</artifactId>
  46. <scope>compile</scope>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.activiti</groupId>
  50. <artifactId>activiti-engine</artifactId>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.activiti</groupId>
  54. <artifactId>activiti-spring</artifactId>
  55. </dependency>
  56. <dependency>
  57. <groupId>com.yuanxd.tools</groupId>
  58. <artifactId>x-tools-io</artifactId>
  59. </dependency>
  60. <dependency>
  61. <groupId>com.xt.js.gkaq</groupId>
  62. <artifactId>gkaq-common</artifactId>
  63. </dependency>
  64. <dependency>
  65. <groupId>junit</groupId>
  66. <artifactId>junit</artifactId>
  67. </dependency>
  68. </dependencies>
  69. <dependencyManagement>
  70. <dependencies>
  71. <dependency>
  72. <groupId>com.xt.js.gkaq</groupId>
  73. <artifactId>gkaq-bom</artifactId>
  74. <version>0.0.1-SNAPSHOT</version>
  75. <type>pom</type>
  76. <scope>import</scope>
  77. </dependency>
  78. </dependencies>
  79. </dependencyManagement>
  80. <distributionManagement>
  81. <repository>
  82. <id>xt-repository</id>
  83. <name>xt Repository</name>
  84. <url>${deploy.url}</url>
  85. </repository>
  86. <snapshotRepository>
  87. <id>xt-repository-snapshots</id>
  88. <name>xt Repository Snapshots</name>
  89. <url>${deploy.snapshots.url}</url>
  90. </snapshotRepository>
  91. </distributionManagement>
  92. <build>
  93. <plugins>
  94. <plugin>
  95. <groupId>org.apache.maven.plugins</groupId>
  96. <artifactId>maven-surefire-plugin</artifactId>
  97. <configuration>
  98. <skipTests>true</skipTests>
  99. </configuration>
  100. </plugin>
  101. <plugin>
  102. <groupId>org.apache.maven.plugins</groupId>
  103. <artifactId>maven-source-plugin</artifactId>
  104. <executions>
  105. <execution>
  106. <id>attach-sources</id>
  107. <goals>
  108. <goal>jar</goal>
  109. </goals>
  110. </execution>
  111. </executions>
  112. </plugin>
  113. <plugin>
  114. <artifactId>maven-war-plugin</artifactId>
  115. </plugin>
  116. <!-- compiler插件, 设定JDK版本 -->
  117. <plugin>
  118. <groupId>org.apache.maven.plugins</groupId>
  119. <artifactId>maven-compiler-plugin</artifactId>
  120. <version>3.0</version>
  121. <configuration>
  122. <source>${jdk.version}</source>
  123. <target>${jdk.version}</target>
  124. <showWarnings>true</showWarnings>
  125. </configuration>
  126. </plugin>
  127. <plugin>
  128. <groupId>org.mybatis.generator</groupId>
  129. <artifactId>mybatis-generator-maven-plugin</artifactId>
  130. <version>1.3.2</version>
  131. <dependencies>
  132. <dependency>
  133. <groupId>com.oracle</groupId>
  134. <artifactId>ojdbc6</artifactId>
  135. <version>11.2.0</version>
  136. </dependency>
  137. <dependency>
  138. <groupId>com.h2database</groupId>
  139. <artifactId>h2</artifactId>
  140. <version>1.4.192</version>
  141. </dependency>
  142. </dependencies>
  143. <configuration>
  144. <configurationFile>${basedir}\src\main\resources\generatorConfig.xml</configurationFile>
  145. <overwrite>true</overwrite>
  146. </configuration>
  147. </plugin>
  148. </plugins>
  149. </build>
  150. <properties>
  151. <project.build.sourceEncoding>GBK</project.build.sourceEncoding>
  152. <!-- java 版本 -->
  153. <jdk.version>1.7</jdk.version>
  154. </properties>
  155. </project>