pom.xml 905 B

123456789101112131415161718192021222324252627
  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>cn.tz.cloud</groupId>
  8. <artifactId>tz-module-laboratory</artifactId>
  9. <version>${revision}</version>
  10. </parent>
  11. <artifactId>tz-module-laboratory-api</artifactId>
  12. <packaging>jar</packaging>
  13. <name>${project.artifactId}</name>
  14. <description>
  15. 实验室模块 API,暴露给其它模块调用
  16. </description>
  17. <dependencies> <!-- 5. 新增 yudao-common 依赖 -->
  18. <dependency>
  19. <groupId>cn.tz.cloud</groupId>
  20. <artifactId>tz-common</artifactId>
  21. </dependency>
  22. </dependencies>
  23. </project>