pom.xml 959 B

123456789101112131415161718192021222324252627282930313233
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <artifactId>spring5-auth</artifactId>
  6. <packaging>pom</packaging>
  7. <name>${project.artifactId}</name>
  8. <description>spring5 demo</description>
  9. <parent>
  10. <groupId>com.yaozhitech</groupId>
  11. <artifactId>spring5</artifactId>
  12. <version>0.1.0</version>
  13. </parent>
  14. <modules>
  15. <module>spring5-auth-server</module>
  16. <module>spring5-auth-client</module>
  17. </modules>
  18. <dependencies>
  19. <!-- Spring Boot Web 依赖 -->
  20. <dependency>
  21. <groupId>org.springframework.boot</groupId>
  22. <artifactId>spring-boot-starter-webflux</artifactId>
  23. </dependency>
  24. </dependencies>
  25. </project>