pom.xml 3.3 KB

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