.flattened-pom.xml 1.1 KB

12345678910111213141516171819202122232425262728293031
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>com.pavis</groupId>
  7. <artifactId>pavis-admin</artifactId>
  8. <version>3.7.0</version>
  9. </parent>
  10. <artifactId>pavis-plugin</artifactId>
  11. <version>3.7.0</version>
  12. <packaging>pom</packaging>
  13. <description>插件模块(存放代码生成、任务调度等扩展模块)</description>
  14. <licenses>
  15. <license>
  16. <name>GNU LESSER GENERAL PUBLIC LICENSE</name>
  17. <url>http://www.gnu.org/licenses/lgpl.html</url>
  18. </license>
  19. </licenses>
  20. <modules>
  21. <module>pavis-plugin-generator</module>
  22. <module>pavis-plugin-open</module>
  23. <module>pavis-plugin-schedule</module>
  24. </modules>
  25. <dependencies>
  26. <dependency>
  27. <groupId>com.pavis</groupId>
  28. <artifactId>pavis-common</artifactId>
  29. </dependency>
  30. </dependencies>
  31. </project>