pom.xml 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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>background</artifactId>
  7. <groupId>cn.kdan.compdf</groupId>
  8. <version>0.0.1</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>background-gateway</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>cn.kdan.compdf</groupId>
  15. <artifactId>background-redis</artifactId>
  16. <version>0.0.1</version>
  17. </dependency>
  18. <dependency>
  19. <groupId>cn.kdan.compdf</groupId>
  20. <artifactId>background-common</artifactId>
  21. <version>0.0.1</version>
  22. <!--gateway 使用的是响应式的web编程模式 把传统的web编程模型刨除-->
  23. <exclusions>
  24. <exclusion>
  25. <groupId>org.springframework.boot</groupId>
  26. <artifactId>spring-boot-starter-web</artifactId>
  27. </exclusion>
  28. </exclusions>
  29. </dependency>
  30. <!--网关-->
  31. <dependency>
  32. <groupId>org.springframework.cloud</groupId>
  33. <artifactId>spring-cloud-starter-gateway</artifactId>
  34. <version>${gateway.version}</version>
  35. </dependency>
  36. </dependencies>
  37. <build>
  38. <finalName>background-gateway</finalName>
  39. <plugins>
  40. <plugin>
  41. <groupId>org.springframework.boot</groupId>
  42. <artifactId>spring-boot-maven-plugin</artifactId>
  43. </plugin>
  44. </plugins>
  45. </build>
  46. </project>