pom.xml 3.2 KB

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