pom.xml 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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>PaasMonitor</artifactId>
  8. <packaging>pom</packaging>
  9. <version>0.1.0</version>
  10. <modules>
  11. <module>PaasMonitor-client</module>
  12. <module>PaasMonitor-server</module>
  13. <module>PaasMonitor-common</module>
  14. </modules>
  15. <parent>
  16. <groupId>org.springframework.boot</groupId>
  17. <artifactId>spring-boot-starter-parent</artifactId>
  18. <version>2.5.5</version>
  19. <relativePath/> <!-- lookup parent from repository -->
  20. </parent>
  21. <build>
  22. <finalName>app</finalName>
  23. </build>
  24. <properties>
  25. <maven.compiler.source>8</maven.compiler.source>
  26. <maven.compiler.target>8</maven.compiler.target>
  27. </properties>
  28. <dependencies>
  29. <dependency>
  30. <groupId>org.projectlombok</groupId>
  31. <artifactId>lombok</artifactId>
  32. <version>1.18.22</version>
  33. </dependency>
  34. </dependencies>
  35. <distributionManagement>
  36. <repository>
  37. <id>nexus</id>
  38. <url>http://nexus.seecoder.cn/repository/maven-releases</url>
  39. </repository>
  40. </distributionManagement>
  41. </project>