pom.xml 952 B

1234567891011121314151617181920212223242526272829303132333435
  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. <modelVersion>4.0.0</modelVersion>
  6. <modules>
  7. <module>demo-api</module>
  8. <module>demo-biz</module>
  9. </modules>
  10. <parent>
  11. <groupId>com.jiayue</groupId>
  12. <artifactId>csc</artifactId>
  13. <version>3.1.0</version>
  14. </parent>
  15. <artifactId>demo</artifactId>
  16. <packaging>pom</packaging>
  17. <properties>
  18. <maven.compiler.source>8</maven.compiler.source>
  19. <maven.compiler.target>8</maven.compiler.target>
  20. </properties>
  21. <dependencies>
  22. <dependency>
  23. <groupId>org.springframework.boot</groupId>
  24. <artifactId>spring-boot-configuration-processor</artifactId>
  25. </dependency>
  26. </dependencies>
  27. </project>