pom.xml 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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>base-servers</artifactId>
  7. <groupId>com.usoftchina.saas</groupId>
  8. <version>1.0.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>gateway-server</artifactId>
  12. <description>gateway server</description>
  13. <properties>
  14. <ratelimit.version>2.1.0.RELEASE</ratelimit.version>
  15. </properties>
  16. <dependencies>
  17. <dependency>
  18. <groupId>com.usoftchina.saas</groupId>
  19. <artifactId>server-starter</artifactId>
  20. </dependency>
  21. <!--<dependency>
  22. <groupId>org.springframework.boot</groupId>
  23. <artifactId>spring-boot-starter-security</artifactId>
  24. </dependency>-->
  25. <dependency>
  26. <groupId>org.springframework.cloud</groupId>
  27. <artifactId>spring-cloud-starter-gateway</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.springframework.cloud</groupId>
  31. <artifactId>spring-cloud-starter-netflix-hystrix</artifactId>
  32. </dependency>
  33. <!-- rate limit -->
  34. <!--<dependency>
  35. <groupId>com.marcosbarbero.cloud</groupId>
  36. <artifactId>spring-cloud-zuul-ratelimit</artifactId>
  37. <version>${ratelimit.version}</version>
  38. </dependency>-->
  39. <dependency>
  40. <groupId>org.springframework.boot</groupId>
  41. <artifactId>spring-boot-starter-data-redis</artifactId>
  42. </dependency>
  43. <!-- sleuth -->
  44. <!--<dependency>
  45. <groupId>org.springframework.cloud</groupId>
  46. <artifactId>spring-cloud-starter-zipkin</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.springframework.amqp</groupId>
  50. <artifactId>spring-rabbit</artifactId>
  51. </dependency>-->
  52. <!-- auth -->
  53. <dependency>
  54. <groupId>com.usoftchina.saas</groupId>
  55. <artifactId>auth-api</artifactId>
  56. </dependency>
  57. <dependency>
  58. <groupId>com.usoftchina.saas</groupId>
  59. <artifactId>auth-common</artifactId>
  60. </dependency>
  61. </dependencies>
  62. <build>
  63. <plugins>
  64. <plugin>
  65. <groupId>org.springframework.boot</groupId>
  66. <artifactId>spring-boot-maven-plugin</artifactId>
  67. </plugin>
  68. <plugin>
  69. <groupId>com.spotify</groupId>
  70. <artifactId>docker-maven-plugin</artifactId>
  71. </plugin>
  72. </plugins>
  73. </build>
  74. </project>