12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <?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">
- <modelVersion>4.0.0</modelVersion>
- <groupId>com.tripto.rpc</groupId>
- <artifactId>tripto_rpc</artifactId>
- <version>1.0-SNAPSHOT</version>
- <name>tripto_rpc</name>
- <url>http://maven.apache.org</url>
- <dependencies>
- <dependency>
- <groupId>com.bjlt.spider</groupId>
- <artifactId>common</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- </dependency>
- </dependencies>
- <repositories>
- <repository>
- <id>public</id>
- <name>public</name>
- <url>http://123.103.51.13:8088/nexus/content/groups/public/</url>
- <snapshots>
- <enabled>true</enabled>
- </snapshots>
- </repository>
- </repositories>
- <distributionManagement>
- <repository>
- <id>releases</id>
- <name>releases</name>
- <url>http://123.103.51.13:8088/nexus/content/repositories/releases/</url>
- </repository>
- <snapshotRepository>
- <id>snapshots</id>
- <name>snapshots</name>
- <url>http://123.103.51.13:8088/nexus/content/repositories/snapshots/</url>
- </snapshotRepository>
- </distributionManagement>
- </project>
|