pom.xml 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211
  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/maven-v4_0_0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>com.uas.ps</groupId>
  6. <artifactId>ps-parent</artifactId>
  7. <version>0.0.1-SNAPSHOT</version>
  8. </parent>
  9. <artifactId>ps-inquiry</artifactId>
  10. <packaging>jar</packaging>
  11. <properties>
  12. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  13. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  14. <maven.compiler.source>1.8</maven.compiler.source>
  15. <maven.compiler.target>1.8</maven.compiler.target>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>com.uas.ps</groupId>
  20. <artifactId>ps-core</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>com.uas.ps</groupId>
  24. <artifactId>ps-entity</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>com.uas.ps</groupId>
  28. <artifactId>ps-httplog</artifactId>
  29. <version>0.0.1-SNAPSHOT</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>commons-fileupload</groupId>
  33. <artifactId>commons-fileupload</artifactId>
  34. <version>1.3.1</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>com.uas.account</groupId>
  38. <artifactId>sso-integration</artifactId>
  39. <version>1.1-SNAPSHOT</version>
  40. </dependency>
  41. <!-- httpClient -->
  42. <dependency>
  43. <groupId>org.apache.httpcomponents</groupId>
  44. <artifactId>httpclient</artifactId>
  45. <version>4.5.6</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.apache.httpcomponents</groupId>
  49. <artifactId>httpcore</artifactId>
  50. <version>4.4.8</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.apache.httpcomponents</groupId>
  54. <artifactId>httpmime</artifactId>
  55. <version>4.5.6</version>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.apache.httpcomponents</groupId>
  59. <artifactId>httpcore-nio</artifactId>
  60. <version>4.4.5</version>
  61. </dependency>
  62. <dependency>
  63. <groupId>org.apache.httpcomponents</groupId>
  64. <artifactId>httpasyncclient</artifactId>
  65. <version>4.1.3</version>
  66. </dependency>
  67. <dependency>
  68. <groupId>net.sf.flexjson</groupId>
  69. <artifactId>flexjson</artifactId>
  70. <version>3.3</version>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.springframework.boot</groupId>
  74. <artifactId>spring-boot-starter-data-jpa</artifactId>
  75. </dependency>
  76. <dependency>
  77. <groupId>org.springframework.boot</groupId>
  78. <artifactId>spring-boot-starter-web</artifactId>
  79. </dependency>
  80. <dependency>
  81. <groupId>org.springframework.boot</groupId>
  82. <artifactId>spring-boot-configuration-processor</artifactId>
  83. </dependency>
  84. <dependency>
  85. <groupId>org.springframework</groupId>
  86. <artifactId>spring-tx</artifactId>
  87. </dependency>
  88. <dependency>
  89. <groupId>org.hibernate</groupId>
  90. <artifactId>hibernate-core</artifactId>
  91. </dependency>
  92. <dependency>
  93. <groupId>mysql</groupId>
  94. <artifactId>mysql-connector-java</artifactId>
  95. </dependency>
  96. <dependency>
  97. <groupId>com.zaxxer</groupId>
  98. <artifactId>HikariCP</artifactId>
  99. <version>3.2.0</version>
  100. </dependency>
  101. <dependency>
  102. <groupId>org.springframework.boot</groupId>
  103. <artifactId>spring-boot-starter-amqp</artifactId>
  104. </dependency>
  105. <dependency>
  106. <groupId>com.alibaba</groupId>
  107. <artifactId>fastjson</artifactId>
  108. </dependency>
  109. <dependency>
  110. <groupId>org.apache.commons</groupId>
  111. <artifactId>commons-lang3</artifactId>
  112. <version>3.3.2</version>
  113. </dependency>
  114. <dependency>
  115. <groupId>org.springframework.boot</groupId>
  116. <artifactId>spring-boot-starter-test</artifactId>
  117. <scope>test</scope>
  118. </dependency>
  119. <dependency>
  120. <groupId>com.usoft.framework</groupId>
  121. <artifactId>usoft-cat-utils</artifactId>
  122. <version>${spring.active.profile}-1.2-SNAPSHOT</version>
  123. </dependency>
  124. </dependencies>
  125. <dependencyManagement>
  126. <dependencies>
  127. <dependency>
  128. <groupId>com.usoft.framework</groupId>
  129. <artifactId>usoft-base-dependencies</artifactId>
  130. <version>${spring.active.profile}-1.2-SNAPSHOT</version>
  131. <type>pom</type>
  132. <scope>import</scope>
  133. </dependency>
  134. </dependencies>
  135. </dependencyManagement>
  136. <build>
  137. <plugins>
  138. <plugin>
  139. <groupId>org.springframework.boot</groupId>
  140. <artifactId>spring-boot-maven-plugin</artifactId>
  141. </plugin>
  142. <plugin>
  143. <artifactId>maven-compiler-plugin</artifactId>
  144. <configuration>
  145. <source>1.8</source>
  146. <target>1.8</target>
  147. </configuration>
  148. </plugin>
  149. </plugins>
  150. </build>
  151. <!-- 项目运行环境 -->
  152. <profiles>
  153. <profile>
  154. <!-- 开发环境 -->
  155. <id>dev</id>
  156. <activation>
  157. <activeByDefault>true</activeByDefault>
  158. </activation>
  159. <properties>
  160. <spring.active.profile>dev</spring.active.profile>
  161. </properties>
  162. </profile>
  163. <profile>
  164. <!-- 测试环境 -->
  165. <id>test</id>
  166. <properties>
  167. <spring.active.profile>test</spring.active.profile>
  168. </properties>
  169. </profile>
  170. <profile>
  171. <!-- 生产环境 -->
  172. <id>prod</id>
  173. <properties>
  174. <spring.active.profile>prod</spring.active.profile>
  175. </properties>
  176. </profile>
  177. <profile>
  178. <!-- 预部署 -->
  179. <id>pre</id>
  180. <properties>
  181. <spring.active.profile>pre</spring.active.profile>
  182. </properties>
  183. </profile>
  184. <profile>
  185. <!-- 预部署测试 -->
  186. <id>ptest</id>
  187. <properties>
  188. <spring.active.profile>ptest</spring.active.profile>
  189. </properties>
  190. </profile>
  191. </profiles>
  192. </project>