pom.xml 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  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>datacenter</artifactId>
  7. <groupId>com.usoftchina.saas</groupId>
  8. <version>1.0.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>datacenter-server</artifactId>
  12. <description>datacenter server</description>
  13. <dependencies>
  14. <dependency>
  15. <groupId>com.usoftchina.saas</groupId>
  16. <artifactId>server-starter</artifactId>
  17. </dependency>
  18. <dependency>
  19. <groupId>com.usoftchina.saas</groupId>
  20. <artifactId>datacenter-dto</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. <dependency>
  32. <groupId>com.github.pagehelper</groupId>
  33. <artifactId>pagehelper-spring-boot-starter</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.springframework.boot</groupId>
  37. <artifactId>spring-boot-starter-data-mongodb</artifactId>
  38. </dependency>
  39. <!-- sleuth -->
  40. <dependency>
  41. <groupId>org.springframework.cloud</groupId>
  42. <artifactId>spring-cloud-starter-zipkin</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.springframework.amqp</groupId>
  46. <artifactId>spring-rabbit</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>net.logstash.logback</groupId>
  50. <artifactId>logstash-logback-encoder</artifactId>
  51. </dependency>
  52. <!-- test -->
  53. <dependency>
  54. <groupId>com.usoftchina.saas</groupId>
  55. <artifactId>test-starter</artifactId>
  56. <scope>test</scope>
  57. </dependency>
  58. <dependency>
  59. <groupId>com.usoftchina.saas</groupId>
  60. <artifactId>datacenter-api</artifactId>
  61. </dependency>
  62. <dependency>
  63. <groupId>com.usoftchina.saas</groupId>
  64. <artifactId>auth-client</artifactId>
  65. </dependency>
  66. <dependency>
  67. <groupId>com.usoftchina.saas</groupId>
  68. <artifactId>account-api</artifactId>
  69. </dependency>
  70. </dependencies>
  71. <build>
  72. <plugins>
  73. <plugin>
  74. <groupId>org.springframework.boot</groupId>
  75. <artifactId>spring-boot-maven-plugin</artifactId>
  76. </plugin>
  77. <plugin>
  78. <groupId>com.spotify</groupId>
  79. <artifactId>docker-maven-plugin</artifactId>
  80. </plugin>
  81. </plugins>
  82. </build>
  83. </project>