pom.xml 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  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. </dependencies>
  120. <build>
  121. <plugins>
  122. <plugin>
  123. <groupId>org.springframework.boot</groupId>
  124. <artifactId>spring-boot-maven-plugin</artifactId>
  125. </plugin>
  126. <plugin>
  127. <artifactId>maven-compiler-plugin</artifactId>
  128. <configuration>
  129. <source>1.8</source>
  130. <target>1.8</target>
  131. </configuration>
  132. </plugin>
  133. </plugins>
  134. </build>
  135. </project>