pom.xml 3.4 KB

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