pom.xml 3.1 KB

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