pom.xml 922 B

12345678910111213141516171819202122
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xmlns="http://maven.apache.org/POM/4.0.0"
  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-module-system</artifactId>
  12. <description>系统管理模块(存放系统管理相关业务功能,例如:部门管理、角色管理、用户管理等)</description>
  13. <dependencies>
  14. <!-- 公共模块(存放公共工具类,公共配置等) -->
  15. <dependency>
  16. <groupId>top.continew</groupId>
  17. <artifactId>continew-common</artifactId>
  18. </dependency>
  19. </dependencies>
  20. </project>