pom.xml 793 B

12345678910111213141516171819202122
  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. <groupId>com.nju.edu</groupId>
  7. <artifactId>seecoder-monitorClient</artifactId>
  8. <version>0.1.0</version>
  9. <dependencies>
  10. <dependency>
  11. <groupId>com.dianping.cat</groupId>
  12. <artifactId>cat-client</artifactId>
  13. <version>3.0.0</version>
  14. </dependency>
  15. </dependencies>
  16. <properties>
  17. <maven.compiler.source>8</maven.compiler.source>
  18. <maven.compiler.target>8</maven.compiler.target>
  19. </properties>
  20. </project>