pom.xml 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  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>cn.com.taiji</groupId>
  5. <artifactId>cn.com.taiji.sys</artifactId>
  6. <version>1.0.0</version>
  7. <properties>
  8. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  9. <java.version>1.7</java.version>
  10. <commons-lang3.version>3.3.2</commons-lang3.version>
  11. <commons-codec.version>1.9</commons-codec.version>
  12. </properties>
  13. <parent>
  14. <groupId>io.spring.platform</groupId>
  15. <artifactId>platform-bom</artifactId>
  16. <version>Brussels-SR6</version>
  17. <!-- 2.0.8.RELEASE -->
  18. </parent>
  19. <dependencyManagement>
  20. <dependencies>
  21. <dependency>
  22. <groupId>cn.com.taiji</groupId>
  23. <artifactId>cn.com.taiji.dependencies</artifactId>
  24. <version>1.0.2</version>
  25. <type>pom</type>
  26. <scope>import</scope>
  27. </dependency>
  28. </dependencies>
  29. </dependencyManagement>
  30. <dependencies>
  31. <dependency>
  32. <groupId>javax.inject</groupId>
  33. <artifactId>javax.inject</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>javax.annotation</groupId>
  37. <artifactId>jsr250-api</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.apache.commons</groupId>
  41. <artifactId>commons-lang3</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>commons-codec</groupId>
  45. <artifactId>commons-codec</artifactId>
  46. </dependency>
  47. <dependency>
  48. <groupId>joda-time</groupId>
  49. <artifactId>joda-time</artifactId>
  50. </dependency>
  51. <dependency>
  52. <groupId>com.fasterxml.jackson.datatype</groupId>
  53. <artifactId>jackson-datatype-joda</artifactId>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.apache.axis</groupId>
  57. <artifactId>axis</artifactId>
  58. <version>1.4</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.hibernate</groupId>
  62. <artifactId>hibernate-validator</artifactId>
  63. </dependency>
  64. <dependency>
  65. <groupId>mysql</groupId>
  66. <artifactId>mysql-connector-java</artifactId>
  67. </dependency>
  68. <dependency>
  69. <groupId>com.oracle</groupId>
  70. <artifactId>ojdbc6</artifactId>
  71. <version>11.2.0.3</version>
  72. </dependency>
  73. <dependency>
  74. <groupId>org.springframework.boot</groupId>
  75. <artifactId>spring-boot-starter-data-jpa</artifactId>
  76. </dependency>
  77. <dependency>
  78. <groupId>org.hibernate</groupId>
  79. <artifactId>hibernate-ehcache</artifactId>
  80. <version>${hibernate.version}</version>
  81. </dependency>
  82. <dependency>
  83. <groupId>org.springframework.security</groupId>
  84. <artifactId>spring-security-core</artifactId>
  85. </dependency>
  86. <dependency>
  87. <groupId>org.springframework.boot</groupId>
  88. <artifactId>spring-boot-starter-test</artifactId>
  89. <scope>test</scope>
  90. </dependency>
  91. <dependency>
  92. <groupId>org.springframework.security</groupId>
  93. <artifactId>spring-security-config</artifactId>
  94. </dependency>
  95. <!-- http://mvnrepository.com/artifact/org.hibernate/hibernate-jpamodelgen -->
  96. <dependency>
  97. <groupId>org.hibernate</groupId>
  98. <artifactId>hibernate-jpamodelgen</artifactId>
  99. <version>5.2.0.Final</version>
  100. <scope>provided</scope>
  101. </dependency>
  102. <!--easypoi模板 -->
  103. <dependency>
  104. <groupId>cn.afterturn</groupId>
  105. <artifactId>easypoi-base</artifactId>
  106. <version>3.2.0</version>
  107. </dependency>
  108. <dependency>
  109. <groupId>cn.afterturn</groupId>
  110. <artifactId>easypoi-web</artifactId>
  111. <version>3.2.0</version>
  112. </dependency>
  113. <dependency>
  114. <groupId>cn.afterturn</groupId>
  115. <artifactId>easypoi-annotation</artifactId>
  116. <version>3.2.0</version>
  117. </dependency>
  118. <dependency>
  119. <groupId>javax.xml.bind</groupId>
  120. <artifactId>jaxb-api</artifactId>
  121. <version>2.3.1</version>
  122. </dependency>
  123. <dependency>
  124. <groupId>org.glassfish.jaxb</groupId>
  125. <artifactId>jaxb-runtime</artifactId>
  126. <version>2.3.1</version>
  127. </dependency>
  128. </dependencies>
  129. <build>
  130. <plugins>
  131. <plugin>
  132. <groupId>org.apache.maven.plugins</groupId>
  133. <artifactId>maven-compiler-plugin</artifactId>
  134. <configuration>
  135. <source>${java.version}</source>
  136. <target>${java.version}</target>
  137. <compilerArgument>-proc:none</compilerArgument>
  138. </configuration>
  139. <executions>
  140. <execution>
  141. <id>run-annotation-processors-only</id>
  142. <phase>generate-sources</phase>
  143. <configuration>
  144. <compilerArgument>-proc:only</compilerArgument>
  145. <includes>
  146. <include>**/domain/*.java</include>
  147. </includes>
  148. <generatedSourcesDirectory>${project.build.directory}/generated-sources/annotations</generatedSourcesDirectory>
  149. </configuration>
  150. <goals>
  151. <goal>compile</goal>
  152. </goals>
  153. </execution>
  154. </executions>
  155. </plugin>
  156. <plugin>
  157. <groupId>org.codehaus.mojo</groupId>
  158. <artifactId>build-helper-maven-plugin</artifactId>
  159. <executions>
  160. <execution>
  161. <phase>process-sources</phase>
  162. <configuration>
  163. <sources>
  164. <source>${project.build.directory}/generated-sources/annotations</source>
  165. </sources>
  166. </configuration>
  167. <goals>
  168. <goal>add-source</goal>
  169. </goals>
  170. </execution>
  171. </executions>
  172. </plugin>
  173. <!-- <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId>
  174. </plugin> -->
  175. </plugins>
  176. </build>
  177. </project>