pom.xml 819 B

123456789101112131415161718192021222324
  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. <artifactId>forecast-gateway</artifactId>
  7. <description>三方交互网关</description>
  8. <packaging>pom</packaging>
  9. <parent>
  10. <artifactId>forecast</artifactId>
  11. <groupId>cn.oleauto</groupId>
  12. <version>${revision}</version>
  13. </parent>
  14. <modules>
  15. <module>modbus4j</module>
  16. <module>forecast-modbus-tcp</module>
  17. <module>forecast-iec60870</module>
  18. <module>forecast-iec104</module>
  19. <module>forecast-device-gateway</module>
  20. </modules>
  21. </project>