You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

43 lines
1.7 KiB

2 years ago
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xmlns="http://maven.apache.org/POM/4.0.0"
  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>febs-common</artifactId>
  7. <groupId>cc.mrbird</groupId>
  8. <version>2.2-RELEASE</version>
  9. <relativePath>../pom.xml</relativePath>
  10. </parent>
  11. <modelVersion>4.0.0</modelVersion>
  12. <artifactId>febs-common-doc-gateway-starter</artifactId>
  13. <name>FEBS-Common-Doc-Gateway-Starter</name>
  14. <description>FEBS-Common-Doc-Gateway-Starter文档网关聚合模块</description>
  15. <properties>
  16. <febs-cloud.version>2.2-RELEASE</febs-cloud.version>
  17. </properties>
  18. <dependencies>
  19. <dependency>
  20. <groupId>cc.mrbird</groupId>
  21. <artifactId>febs-common-doc</artifactId>
  22. <version>${febs-cloud.version}</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.springframework.boot</groupId>
  26. <artifactId>spring-boot-starter</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.springframework.boot</groupId>
  30. <artifactId>spring-boot-configuration-processor</artifactId>
  31. <optional>true</optional>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.springframework.cloud</groupId>
  35. <artifactId>spring-cloud-starter-gateway</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.apache.commons</groupId>
  39. <artifactId>commons-lang3</artifactId>
  40. </dependency>
  41. </dependencies>
  42. </project>