pom.xml 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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. <module>testConnect</module>
  13. </modules>
  14. <build>
  15. <finalName>app</finalName>
  16. </build>
  17. <parent>
  18. <groupId>org.springframework.boot</groupId>
  19. <artifactId>spring-boot-starter-parent</artifactId>
  20. <version>2.6.2</version>
  21. <relativePath/> <!-- lookup parent from repository -->
  22. </parent>
  23. <groupId>com.nju.edu</groupId>
  24. <artifactId>seecoder-logTracking</artifactId>
  25. <version>0.1.1</version>
  26. <properties>
  27. <maven.compiler.source>8</maven.compiler.source>
  28. <maven.compiler.target>8</maven.compiler.target>
  29. </properties>
  30. <distributionManagement>
  31. <repository>
  32. <id>nexus</id>
  33. <url>http://nexus.seecoder.cn/repository/maven-releases</url>
  34. </repository>
  35. </distributionManagement>
  36. </project>