pom.xml 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  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>data-daq</artifactId>
  7. <groupId>com.simuwang</groupId>
  8. <version>1.0.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>service-calc</artifactId>
  12. <description>数据采集计算模块</description>
  13. <dependencies>
  14. <dependency>
  15. <groupId>com.simuwang</groupId>
  16. <artifactId>service-base</artifactId>
  17. </dependency>
  18. </dependencies>
  19. <repositories>
  20. <repository>
  21. <id>smppw-release</id>
  22. <url>http://120.24.213.180:8081/nexus/content/repositories/releases/</url>
  23. </repository>
  24. <repository>
  25. <id>smppw-snapshots</id>
  26. <url>http://120.24.213.180:8081/nexus/content/repositories/snapshots/</url>
  27. <snapshots>
  28. <enabled>true</enabled>
  29. </snapshots>
  30. </repository>
  31. </repositories>
  32. </project>