pom.xml 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>cn.tz.cloud</groupId>
  6. <artifactId>tz-module-pipeline</artifactId>
  7. <version>${revision}</version> <!-- 1. 修改 version 为 ${revision} -->
  8. </parent>
  9. <artifactId>tz-module-pipeline-api</artifactId>
  10. <packaging>jar</packaging> <!-- 2. 新增 packaging 为 jar -->
  11. <name>${project.artifactId}</name> <!-- 3. 新增 name 为 ${project.artifactId} -->
  12. <description> <!-- 4. 新增 description 为该模块的描述 -->
  13. 管道 模块 API,暴露给其它模块调用
  14. </description>
  15. <url>http://maven.apache.org</url>
  16. <properties>
  17. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  18. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>junit</groupId>
  22. <artifactId>junit</artifactId>
  23. <version>3.8.1</version>
  24. <scope>test</scope>
  25. </dependency>
  26. <!-- 5. 新增 tz-common 依赖 -->
  27. <dependency>
  28. <groupId>cn.tz.cloud</groupId>
  29. <artifactId>tz-common</artifactId>
  30. </dependency>
  31. </dependencies>
  32. </project>