pom.xml 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  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. <packaging>pom</packaging>
  7. <modules>
  8. <module>seecoder-logTracking-server</module>
  9. <module>seecoder-logTracking-client</module>
  10. <module>seecoder-logTracking-consumer</module>
  11. <module>seecoder-logTracking-common</module>
  12. </modules>
  13. <build>
  14. <finalName>app</finalName>
  15. </build>
  16. <parent>
  17. <groupId>org.springframework.boot</groupId>
  18. <artifactId>spring-boot-starter-parent</artifactId>
  19. <version>2.6.2</version>
  20. <relativePath/> <!-- lookup parent from repository -->
  21. </parent>
  22. <groupId>com.nju.edu</groupId>
  23. <artifactId>seecoder-logTracking</artifactId>
  24. <version>0.1.0</version>
  25. <properties>
  26. <maven.compiler.source>8</maven.compiler.source>
  27. <maven.compiler.target>8</maven.compiler.target>
  28. </properties>
  29. </project>