pom.xml 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <groupId>com.anlovek</groupId>
  7. <artifactId>anlovek</artifactId>
  8. <version>0.0.1-SNAPSHOT</version>
  9. <packaging>pom</packaging>
  10. <name>Anlovek</name>
  11. <description></description>
  12. <parent>
  13. <groupId>org.springframework.boot</groupId>
  14. <artifactId>spring-boot-starter-parent</artifactId>
  15. <version>2.0.0.RELEASE</version>
  16. <relativePath /> <!-- lookup parent from repository -->
  17. </parent>
  18. <modules>
  19. <module>aak-common</module>
  20. <module>aak-das</module>
  21. <module>aak-admin</module>
  22. <module>aak-civil</module>
  23. <module>aak-app</module>
  24. <module>aak-saas</module>
  25. <module>aak-nersing</module>
  26. <!-- <module>aak-common-service</module> -->
  27. <module>aak-core-service</module>
  28. <module>aak-task-service</module>
  29. <module>aak-service-center</module>
  30. </modules>
  31. <properties>
  32. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  33. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  34. <java.version>1.8</java.version>
  35. </properties>
  36. <dependencies>
  37. <dependency>
  38. <groupId>org.springframework.boot</groupId>
  39. <artifactId>spring-boot-starter-jdbc</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.springframework.boot</groupId>
  43. <artifactId>spring-boot-starter-web</artifactId>
  44. <exclusions>
  45. <exclusion>
  46. <groupId>org.springframework.boot</groupId>
  47. <artifactId>spring-boot-starter-tomcat</artifactId>
  48. </exclusion>
  49. </exclusions>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.springframework.boot</groupId>
  53. <artifactId>spring-boot-starter-undertow</artifactId>
  54. <exclusions>
  55. <exclusion>
  56. <groupId>io.undertow</groupId>
  57. <artifactId>undertow-websockets-jsr</artifactId>
  58. </exclusion>
  59. </exclusions>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.springframework.boot</groupId>
  63. <artifactId>spring-boot-starter-aop</artifactId>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.springframework.boot</groupId>
  67. <artifactId>spring-boot-starter-data-redis</artifactId>
  68. <version>2.0.0.RELEASE</version><!--$NO-MVN-MAN-VER$-->
  69. </dependency>
  70. <dependency>
  71. <groupId>org.apache.commons</groupId>
  72. <artifactId>commons-lang3</artifactId>
  73. <version>3.4</version><!--$NO-MVN-MAN-VER$-->
  74. </dependency>
  75. <dependency>
  76. <groupId>org.apache.httpcomponents</groupId>
  77. <artifactId>httpclient</artifactId>
  78. </dependency>
  79. <dependency>
  80. <groupId>mysql</groupId>
  81. <artifactId>mysql-connector-java</artifactId>
  82. <scope>runtime</scope>
  83. </dependency>
  84. <dependency>
  85. <groupId>org.mybatis.spring.boot</groupId>
  86. <artifactId>mybatis-spring-boot-starter</artifactId>
  87. <version>1.3.2</version>
  88. </dependency>
  89. <!--日期处理工具 -->
  90. <dependency>
  91. <groupId>joda-time</groupId>
  92. <artifactId>joda-time</artifactId>
  93. <version>2.4</version><!--$NO-MVN-MAN-VER$-->
  94. </dependency>
  95. <!--lombok -->
  96. <dependency>
  97. <groupId>org.projectlombok</groupId>
  98. <artifactId>lombok</artifactId>
  99. <version>1.16.14</version><!--$NO-MVN-MAN-VER$-->
  100. </dependency>
  101. <!--session id 生成器 -->
  102. <dependency>
  103. <groupId>com.sohu</groupId>
  104. <artifactId>idcenter</artifactId>
  105. <version>1.1.1</version>
  106. </dependency>
  107. <dependency>
  108. <groupId>redis.clients</groupId>
  109. <artifactId>jedis</artifactId>
  110. <version>2.9.0</version><!--$NO-MVN-MAN-VER$-->
  111. </dependency>
  112. <!-- https://mvnrepository.com/artifact/com.alibaba/fastjson -->
  113. <dependency>
  114. <groupId>com.alibaba</groupId>
  115. <artifactId>fastjson</artifactId>
  116. <version>1.2.47</version>
  117. </dependency>
  118. <dependency>
  119. <groupId>io.springfox</groupId>
  120. <artifactId>springfox-swagger2</artifactId>
  121. <version>2.6.1</version>
  122. </dependency>
  123. <dependency>
  124. <groupId>io.springfox</groupId>
  125. <artifactId>springfox-swagger-ui</artifactId>
  126. <version>2.6.1</version>
  127. </dependency>
  128. <dependency>
  129. <groupId>javax.ws.rs</groupId>
  130. <artifactId>jsr311-api</artifactId>
  131. <version>1.1.1</version>
  132. </dependency>
  133. <!--&lt;!&ndash;分页工具&ndash;&gt; -->
  134. <dependency>
  135. <groupId>com.github.pagehelper</groupId>
  136. <artifactId>pagehelper-spring-boot-starter</artifactId>
  137. <version>1.2.3</version>
  138. </dependency>
  139. </dependencies>
  140. <dependencyManagement>
  141. <dependencies>
  142. <dependency>
  143. <groupId>org.springframework.cloud</groupId>
  144. <artifactId>spring-cloud-dependencies</artifactId>
  145. <version>Finchley.M8</version>
  146. <type>pom</type>
  147. <scope>import</scope>
  148. </dependency>
  149. </dependencies>
  150. </dependencyManagement>
  151. <build>
  152. <plugins>
  153. <plugin>
  154. <groupId>org.springframework.boot</groupId>
  155. <artifactId>spring-boot-maven-plugin</artifactId>
  156. </plugin>
  157. <plugin>
  158. <groupId>org.codehaus.mojo</groupId>
  159. <artifactId>findbugs-maven-plugin</artifactId>
  160. <version>3.0.1</version>
  161. <configuration>
  162. <threshold>High</threshold>
  163. <effort>Default</effort>
  164. <findbugsXmlOutput>true</findbugsXmlOutput>
  165. <xmlOutput>true</xmlOutput>
  166. <findbugsXmlOutputDirectory>target/site</findbugsXmlOutputDirectory>
  167. </configuration>
  168. </plugin>
  169. </plugins>
  170. </build>
  171. <reporting>
  172. <plugins>
  173. <plugin>
  174. <groupId>org.codehaus.mojo</groupId>
  175. <artifactId>findbugs-maven-plugin</artifactId>
  176. <version>3.0.1</version>
  177. <configuration>
  178. <xmlOutput>true</xmlOutput>
  179. <!-- Optional directoryto put findbugs xdoc xml report -->
  180. <!--<xmlOutputDirectory>target/site</xmlOutputDirectory> -->
  181. <findbugsXmlOutput>true</findbugsXmlOutput>
  182. </configuration>
  183. </plugin>
  184. </plugins>
  185. </reporting>
  186. </project>