pom.xml 1.0 KB

1234567891011121314151617181920212223242526272829
  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. <parent>
  7. <groupId>top.continew</groupId>
  8. <artifactId>continew-admin</artifactId>
  9. <version>${revision}</version>
  10. </parent>
  11. <artifactId>continew-plugin</artifactId>
  12. <packaging>pom</packaging>
  13. <description>插件模块(存放代码生成、任务调度等扩展模块)</description>
  14. <modules>
  15. <module>continew-plugin-schedule</module>
  16. <module>continew-plugin-open</module>
  17. <module>continew-plugin-generator</module>
  18. </modules>
  19. <dependencies>
  20. <!-- 公共模块(存放公共工具类,公共配置等) -->
  21. <dependency>
  22. <groupId>top.continew</groupId>
  23. <artifactId>continew-common</artifactId>
  24. </dependency>
  25. </dependencies>
  26. </project>