pom.xml 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>com.uas.ps</groupId>
  7. <artifactId>ps-parent</artifactId>
  8. <version>0.0.1-SNAPSHOT</version>
  9. </parent>
  10. <artifactId>ps-pricing</artifactId>
  11. <packaging>jar</packaging>
  12. <dependencies>
  13. <dependency>
  14. <groupId>junit</groupId>
  15. <artifactId>junit</artifactId>
  16. <scope>test</scope>
  17. </dependency>
  18. <dependency>
  19. <groupId>com.uas.ps</groupId>
  20. <artifactId>ps-core</artifactId>
  21. <version>0.0.1-SNAPSHOT</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>com.uas.ps</groupId>
  25. <artifactId>ps-entity</artifactId>
  26. <version>0.0.1-SNAPSHOT</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>com.uas.ps</groupId>
  30. <artifactId>ps-httplog</artifactId>
  31. <version>0.0.1-SNAPSHOT</version>
  32. </dependency>
  33. <!--<dependency>-->
  34. <!--<groupId>com.uas.account</groupId>-->
  35. <!--<artifactId>sso-integration</artifactId>-->
  36. <!--</dependency>-->
  37. <!-- httpClient -->
  38. <dependency>
  39. <groupId>org.apache.httpcomponents</groupId>
  40. <artifactId>httpclient</artifactId>
  41. <version>4.4</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.apache.httpcomponents</groupId>
  45. <artifactId>httpmime</artifactId>
  46. <version>4.4</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>net.sf.flexjson</groupId>
  50. <artifactId>flexjson</artifactId>
  51. <version>3.3</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.springframework.boot</groupId>
  55. <artifactId>spring-boot-starter-actuator</artifactId>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.springframework.boot</groupId>
  59. <artifactId>spring-boot-starter-data-jpa</artifactId>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.springframework.boot</groupId>
  63. <artifactId>spring-boot-starter-web</artifactId>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.springframework.boot</groupId>
  67. <artifactId>spring-boot-configuration-processor</artifactId>
  68. </dependency>
  69. <dependency>
  70. <groupId>org.springframework</groupId>
  71. <artifactId>spring-tx</artifactId>
  72. </dependency>
  73. <dependency>
  74. <groupId>org.hibernate</groupId>
  75. <artifactId>hibernate-core</artifactId>
  76. </dependency>
  77. <dependency>
  78. <groupId>mysql</groupId>
  79. <artifactId>mysql-connector-java</artifactId>
  80. </dependency>
  81. <dependency>
  82. <groupId>com.alibaba</groupId>
  83. <artifactId>druid</artifactId>
  84. </dependency>
  85. <dependency>
  86. <groupId>com.alibaba</groupId>
  87. <artifactId>fastjson</artifactId>
  88. </dependency>
  89. <dependency>
  90. <groupId>org.junit.jupiter</groupId>
  91. <artifactId>junit-jupiter-api</artifactId>
  92. <version>RELEASE</version>
  93. </dependency>
  94. </dependencies>
  95. <build>
  96. <plugins>
  97. <plugin>
  98. <groupId>org.springframework.boot</groupId>
  99. <artifactId>spring-boot-maven-plugin</artifactId>
  100. </plugin>
  101. </plugins>
  102. </build>
  103. </project>