pom.xml 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  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. <parent>
  6. <artifactId>purchase</artifactId>
  7. <groupId>com.usoftchina.saas</groupId>
  8. <version>1.0.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>purchase-server</artifactId>
  12. <description>purchase server</description>
  13. <dependencies>
  14. <dependency>
  15. <groupId>com.usoftchina.saas</groupId>
  16. <artifactId>purchase-dto</artifactId>
  17. </dependency>
  18. <dependency>
  19. <groupId>com.usoftchina.saas</groupId>
  20. <artifactId>document-api</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>com.usoftchina.saas</groupId>
  24. <artifactId>auth-client</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>com.usoftchina.saas</groupId>
  28. <artifactId>server-starter</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>com.usoftchina.saas</groupId>
  32. <artifactId>mall-api</artifactId>
  33. <version>1.0.0-SNAPSHOT</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>com.usoftchina.saas</groupId>
  37. <artifactId>transfers-api</artifactId>
  38. <version>1.0.0-SNAPSHOT</version>
  39. </dependency>
  40. <!--test-->
  41. <dependency>
  42. <groupId>com.usoftchina.saas</groupId>
  43. <artifactId>test-starter</artifactId>
  44. <scope>test</scope>
  45. </dependency>
  46. <!-- db -->
  47. <dependency>
  48. <groupId>mysql</groupId>
  49. <artifactId>mysql-connector-java</artifactId>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.mybatis.spring.boot</groupId>
  53. <artifactId>mybatis-spring-boot-starter</artifactId>
  54. </dependency>
  55. <!-- sleuth -->
  56. <dependency>
  57. <groupId>org.springframework.cloud</groupId>
  58. <artifactId>spring-cloud-starter-zipkin</artifactId>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.springframework.amqp</groupId>
  62. <artifactId>spring-rabbit</artifactId>
  63. </dependency>
  64. <dependency>
  65. <groupId>net.logstash.logback</groupId>
  66. <artifactId>logstash-logback-encoder</artifactId>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.projectlombok</groupId>
  70. <artifactId>lombok</artifactId>
  71. </dependency>
  72. <dependency>
  73. <groupId>com.github.pagehelper</groupId>
  74. <artifactId>pagehelper-spring-boot-starter</artifactId>
  75. </dependency>
  76. <!-- feign -->
  77. <dependency>
  78. <groupId>org.springframework.cloud</groupId>
  79. <artifactId>spring-cloud-starter-openfeign</artifactId>
  80. </dependency>
  81. <dependency>
  82. <groupId>com.usoftchina.saas</groupId>
  83. <artifactId>commons-dto</artifactId>
  84. </dependency>
  85. <dependency>
  86. <groupId>com.usoftchina.saas</groupId>
  87. <artifactId>commons-api</artifactId>
  88. </dependency>
  89. <dependency>
  90. <groupId>com.usoftchina.saas</groupId>
  91. <artifactId>datacenter-client</artifactId>
  92. </dependency>
  93. </dependencies>
  94. <build>
  95. <plugins>
  96. <plugin>
  97. <groupId>org.springframework.boot</groupId>
  98. <artifactId>spring-boot-maven-plugin</artifactId>
  99. </plugin>
  100. <plugin>
  101. <groupId>com.spotify</groupId>
  102. <artifactId>docker-maven-plugin</artifactId>
  103. </plugin>
  104. </plugins>
  105. </build>
  106. </project>