1234567891011121314151617181920212223242526272829303132333435 |
- <?xml version="1.0" encoding="UTF-8"?>
- <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">
- <parent>
- <artifactId>data-daq</artifactId>
- <groupId>com.simuwang</groupId>
- <version>1.0.0</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>service-calc</artifactId>
- <description>数据采集计算模块</description>
- <dependencies>
- <dependency>
- <groupId>com.simuwang</groupId>
- <artifactId>service-base</artifactId>
- </dependency>
- </dependencies>
- <repositories>
- <repository>
- <id>smppw-release</id>
- <url>http://120.24.213.180:8081/nexus/content/repositories/releases/</url>
- </repository>
- <repository>
- <id>smppw-snapshots</id>
- <url>http://120.24.213.180:8081/nexus/content/repositories/snapshots/</url>
- <snapshots>
- <enabled>true</enabled>
- </snapshots>
- </repository>
- </repositories>
- </project>
|