pom.xml 3.9 KB

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