pom.xml 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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>seecoder-logTracking</artifactId>
  7. <groupId>com.nju.edu</groupId>
  8. <version>0.1.1</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>testConnect</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>com.nju.edu</groupId>
  15. <artifactId>seecoder-logTracking-client</artifactId>
  16. <version>0.1.1</version>
  17. <scope>compile</scope>
  18. </dependency>
  19. <dependency>
  20. <groupId>com.nju.edu</groupId>
  21. <artifactId>seecoder-logTracking-consumer</artifactId>
  22. <version>0.1.1</version>
  23. <scope>compile</scope>
  24. </dependency>
  25. <dependency>
  26. <groupId>com.nju.edu</groupId>
  27. <artifactId>seecoder-logTracking-common</artifactId>
  28. <version>0.1.1</version>
  29. </dependency>
  30. </dependencies>
  31. <properties>
  32. <maven.compiler.source>8</maven.compiler.source>
  33. <maven.compiler.target>8</maven.compiler.target>
  34. </properties>
  35. <build>
  36. <plugins>
  37. <plugin>
  38. <groupId>org.springframework.boot</groupId>
  39. <artifactId>spring-boot-maven-plugin</artifactId>
  40. </plugin>
  41. </plugins>
  42. </build>
  43. </project>