pom.xml 1.2 KB

123456789101112131415161718192021222324252627282930313233343536
  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>MSModule</artifactId>
  7. <groupId>com.github.microservice</groupId>
  8. <version>1.0.0-SNAPSHOT</version>
  9. <relativePath>../../super/MSModule</relativePath>
  10. </parent>
  11. <modelVersion>4.0.0</modelVersion>
  12. <groupId>com.github.microservice.components</groupId>
  13. <artifactId>PushCenterClient</artifactId>
  14. <dependencies>
  15. <dependency>
  16. <groupId>com.github.microservice</groupId>
  17. <artifactId>PCore</artifactId>
  18. <version>1.0.0-SNAPSHOT</version>
  19. </dependency>
  20. <dependency>
  21. <groupId>com.github.microservice.components</groupId>
  22. <artifactId>ApplicationClient</artifactId>
  23. <version>1.0.0-SNAPSHOT</version>
  24. </dependency>
  25. </dependencies>
  26. <properties>
  27. <maven.compiler.source>11</maven.compiler.source>
  28. <maven.compiler.target>11</maven.compiler.target>
  29. </properties>
  30. </project>