pom.xml 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  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>org.activiti</groupId>
  45. <artifactId>activiti-engine</artifactId>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.activiti</groupId>
  49. <artifactId>activiti-spring</artifactId>
  50. </dependency>
  51. <!-- <dependency>
  52. <groupId>org.activiti</groupId>
  53. <artifactId>activiti-modeler</artifactId>
  54. <version>5.20.0</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.activiti</groupId>
  58. <artifactId>activiti-diagram-rest</artifactId>
  59. <version>5.20.0</version>
  60. </dependency> -->
  61. <dependency>
  62. <groupId>com.yuanxd.tools</groupId>
  63. <artifactId>x-tools-io</artifactId>
  64. </dependency>
  65. <dependency>
  66. <groupId>com.xt.js.gkaq</groupId>
  67. <artifactId>gkaq-common</artifactId>
  68. </dependency>
  69. <dependency>
  70. <groupId>junit</groupId>
  71. <artifactId>junit</artifactId>
  72. </dependency>
  73. </dependencies>
  74. <dependencyManagement>
  75. <dependencies>
  76. <dependency>
  77. <groupId>com.xt.js.gkaq</groupId>
  78. <artifactId>gkaq-bom</artifactId>
  79. <version>0.0.1-SNAPSHOT</version>
  80. <type>pom</type>
  81. <scope>import</scope>
  82. </dependency>
  83. </dependencies>
  84. </dependencyManagement>
  85. <distributionManagement>
  86. <repository>
  87. <id>xt-repository</id>
  88. <name>xt Repository</name>
  89. <url>${deploy.url}</url>
  90. </repository>
  91. <snapshotRepository>
  92. <id>xt-repository-snapshots</id>
  93. <name>xt Repository Snapshots</name>
  94. <url>${deploy.snapshots.url}</url>
  95. </snapshotRepository>
  96. </distributionManagement>
  97. <build>
  98. <plugins>
  99. <plugin>
  100. <groupId>org.apache.maven.plugins</groupId>
  101. <artifactId>maven-surefire-plugin</artifactId>
  102. <configuration>
  103. <skipTests>true</skipTests>
  104. </configuration>
  105. </plugin>
  106. <plugin>
  107. <groupId>org.apache.maven.plugins</groupId>
  108. <artifactId>maven-source-plugin</artifactId>
  109. <executions>
  110. <execution>
  111. <id>attach-sources</id>
  112. <goals>
  113. <goal>jar</goal>
  114. </goals>
  115. </execution>
  116. </executions>
  117. </plugin>
  118. <plugin>
  119. <artifactId>maven-war-plugin</artifactId>
  120. </plugin>
  121. <!-- compiler插件, 设定JDK版本 -->
  122. <plugin>
  123. <groupId>org.apache.maven.plugins</groupId>
  124. <artifactId>maven-compiler-plugin</artifactId>
  125. <version>3.0</version>
  126. <configuration>
  127. <source>${jdk.version}</source>
  128. <target>${jdk.version}</target>
  129. <showWarnings>true</showWarnings>
  130. </configuration>
  131. </plugin>
  132. <plugin>
  133. <groupId>org.mybatis.generator</groupId>
  134. <artifactId>mybatis-generator-maven-plugin</artifactId>
  135. <version>1.3.2</version>
  136. <dependencies>
  137. <dependency>
  138. <groupId>com.oracle</groupId>
  139. <artifactId>ojdbc6</artifactId>
  140. <version>11.2.0</version>
  141. </dependency>
  142. <dependency>
  143. <groupId>com.h2database</groupId>
  144. <artifactId>h2</artifactId>
  145. <version>1.4.192</version>
  146. </dependency>
  147. </dependencies>
  148. <configuration>
  149. <configurationFile>${basedir}\src\main\resources\generatorConfig.xml</configurationFile>
  150. <overwrite>true</overwrite>
  151. </configuration>
  152. </plugin>
  153. </plugins>
  154. </build>
  155. <properties>
  156. <project.build.sourceEncoding>GBK</project.build.sourceEncoding>
  157. <!-- java 版本 -->
  158. <jdk.version>1.7</jdk.version>
  159. </properties>
  160. </project>