pom.xml 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  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. <parent>
  6. <artifactId>mec_process</artifactId>
  7. <groupId>com.zkqy</groupId>
  8. <version>3.8.5</version>
  9. </parent>
  10. <build>
  11. <plugins>
  12. <plugin>
  13. <groupId>org.apache.maven.plugins</groupId>
  14. <artifactId>maven-compiler-plugin</artifactId>
  15. <configuration>
  16. <source>1.8</source>
  17. <target>1.8</target>
  18. </configuration>
  19. </plugin>
  20. </plugins>
  21. </build>
  22. <modelVersion>4.0.0</modelVersion>
  23. <artifactId>zkqy-system</artifactId>
  24. <description>
  25. system系统模块
  26. </description>
  27. <dependencies>
  28. <!-- 通用工具-->
  29. <dependency>
  30. <groupId>com.zkqy</groupId>
  31. <artifactId>zkqy-common</artifactId>
  32. </dependency>
  33. </dependencies>
  34. </project>