pom.xml 4.3 KB

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