pom.xml 4.9 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>cn.com.taiji</groupId>
  5. <artifactId>cn.com.taiji.security</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. <!-- Servlet add 2014-07-24 SunJingyan Start -->
  32. <dependency>
  33. <groupId>org.apache.tomcat</groupId>
  34. <artifactId>tomcat-jsp-api</artifactId>
  35. </dependency>
  36. <!-- Servlet add 2014-07-24 SunJingyan End -->
  37. <!-- Spring-webmvc add 2014-07-24 SunJingyan Start -->
  38. <dependency>
  39. <groupId>org.springframework</groupId>
  40. <artifactId>spring-webmvc</artifactId>
  41. </dependency>
  42. <!-- Spring-webmvc add 2014-07-24 SunJingyan End -->
  43. <dependency>
  44. <groupId>javax.inject</groupId>
  45. <artifactId>javax.inject</artifactId>
  46. </dependency>
  47. <dependency>
  48. <groupId>javax.annotation</groupId>
  49. <artifactId>jsr250-api</artifactId>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.apache.commons</groupId>
  53. <artifactId>commons-lang3</artifactId>
  54. </dependency>
  55. <dependency>
  56. <groupId>commons-codec</groupId>
  57. <artifactId>commons-codec</artifactId>
  58. </dependency>
  59. <dependency>
  60. <groupId>joda-time</groupId>
  61. <artifactId>joda-time</artifactId>
  62. </dependency>
  63. <dependency>
  64. <groupId>com.fasterxml.jackson.datatype</groupId>
  65. <artifactId>jackson-datatype-joda</artifactId>
  66. </dependency>
  67. <dependency>
  68. <groupId>org.hibernate</groupId>
  69. <artifactId>hibernate-validator</artifactId>
  70. </dependency>
  71. <dependency>
  72. <groupId>mysql</groupId>
  73. <artifactId>mysql-connector-java</artifactId>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.springframework.boot</groupId>
  77. <artifactId>spring-boot-starter-data-jpa</artifactId>
  78. </dependency>
  79. <dependency>
  80. <groupId>org.hibernate</groupId>
  81. <artifactId>hibernate-ehcache</artifactId>
  82. <version>${hibernate.version}</version>
  83. </dependency>
  84. <dependency>
  85. <groupId>org.springframework.boot</groupId>
  86. <artifactId>spring-boot-starter-test</artifactId>
  87. <scope>test</scope>
  88. </dependency>
  89. <dependency>
  90. <groupId>org.hibernate</groupId>
  91. <artifactId>hibernate-jpamodelgen</artifactId>
  92. <version>5.2.0.Final</version>
  93. <scope>provided</scope>
  94. </dependency>
  95. <dependency>
  96. <groupId>org.springframework.boot</groupId>
  97. <artifactId>spring-boot-starter-security</artifactId>
  98. </dependency>
  99. <dependency>
  100. <groupId>org.thymeleaf.extras</groupId>
  101. <artifactId>thymeleaf-extras-springsecurity4</artifactId>
  102. </dependency>
  103. <dependency>
  104. <groupId>cn.com.taiji</groupId>
  105. <artifactId>cn.com.taiji.sys</artifactId>
  106. <version>1.0.0</version>
  107. </dependency>
  108. </dependencies>
  109. <build>
  110. <plugins>
  111. <plugin>
  112. <groupId>org.apache.maven.plugins</groupId>
  113. <artifactId>maven-compiler-plugin</artifactId>
  114. <configuration>
  115. <source>${java.version}</source>
  116. <target>${java.version}</target>
  117. <compilerArgument>-proc:none</compilerArgument>
  118. </configuration>
  119. <executions>
  120. <execution>
  121. <id>run-annotation-processors-only</id>
  122. <phase>generate-sources</phase>
  123. <configuration>
  124. <compilerArgument>-proc:only</compilerArgument>
  125. <includes>
  126. <include>**/domain/*.java</include>
  127. </includes>
  128. <generatedSourcesDirectory>${project.build.directory}/generated-sources/annotations</generatedSourcesDirectory>
  129. </configuration>
  130. <goals>
  131. <goal>compile</goal>
  132. </goals>
  133. </execution>
  134. </executions>
  135. </plugin>
  136. <plugin>
  137. <groupId>org.codehaus.mojo</groupId>
  138. <artifactId>build-helper-maven-plugin</artifactId>
  139. <executions>
  140. <execution>
  141. <phase>process-sources</phase>
  142. <configuration>
  143. <sources>
  144. <source>${project.build.directory}/generated-sources/annotations</source>
  145. </sources>
  146. </configuration>
  147. <goals>
  148. <goal>add-source</goal>
  149. </goals>
  150. </execution>
  151. </executions>
  152. </plugin>
  153. <!-- <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId>
  154. </plugin> -->
  155. </plugins>
  156. </build>
  157. </project>