pom.xml 1.1 KB

123456789101112131415161718192021222324252627282930
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  2. <modelVersion>4.0.0</modelVersion>
  3. <parent>
  4. <groupId>com.jeff.tianti.modules</groupId>
  5. <artifactId>tianti-modules</artifactId>
  6. <version>0.0.1-SNAPSHOT</version>
  7. </parent>
  8. <groupId>com.jeff.tianti.inter</groupId>
  9. <artifactId>tianti-module-interface</artifactId>
  10. <version>${tianti.version}</version>
  11. <packaging>war</packaging>
  12. <name>tianti-module-interface</name>
  13. <description>tianti-module-interface</description>
  14. <dependencies>
  15. <dependency>
  16. <groupId>com.jeff.tianti.common</groupId>
  17. <artifactId>tianti-common</artifactId>
  18. <version>${tianti.version}</version>
  19. </dependency>
  20. <dependency>
  21. <groupId>com.jeff.tianti.cms</groupId>
  22. <artifactId>tianti-cms</artifactId>
  23. <version>${tianti.version}</version>
  24. </dependency>
  25. </dependencies>
  26. <build>
  27. <finalName>tianti-module-interface</finalName>
  28. </build>
  29. </project>