pom.xml 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  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.usoftchina.saas</groupId>
  61. <artifactId>document-dto</artifactId>
  62. </dependency>
  63. <dependency>
  64. <groupId>com.usoftchina.saas</groupId>
  65. <artifactId>commons-dto</artifactId>
  66. </dependency>
  67. <dependency>
  68. <groupId>com.usoftchina.saas</groupId>
  69. <artifactId>commons-api</artifactId>
  70. </dependency>
  71. </dependencies>
  72. <build>
  73. <plugins>
  74. <plugin>
  75. <groupId>org.springframework.boot</groupId>
  76. <artifactId>spring-boot-maven-plugin</artifactId>
  77. </plugin>
  78. <plugin>
  79. <groupId>com.spotify</groupId>
  80. <artifactId>docker-maven-plugin</artifactId>
  81. </plugin>
  82. </plugins>
  83. </build>
  84. </project>