mirror of
https://github.com/theonedev/onedev.git
synced 2025-12-08 18:26:30 +00:00
80 lines
2.8 KiB
XML
80 lines
2.8 KiB
XML
<?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>
|
|
<parent>
|
|
<groupId>com.pmease</groupId>
|
|
<artifactId>parent.general</artifactId>
|
|
<version>1.0.7</version>
|
|
</parent>
|
|
<artifactId>commons.util</artifactId>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>com.pmease</groupId>
|
|
<artifactId>plugin.maven</artifactId>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>commons-lang</groupId>
|
|
<artifactId>commons-lang</artifactId>
|
|
<version>2.6</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>commons-codec</groupId>
|
|
<artifactId>commons-codec</artifactId>
|
|
<version>1.6</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>commons-io</groupId>
|
|
<artifactId>commons-io</artifactId>
|
|
<version>2.1</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.google.code.findbugs</groupId>
|
|
<artifactId>jsr305</artifactId>
|
|
<version>2.0.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.google.guava</groupId>
|
|
<artifactId>guava</artifactId>
|
|
<version>11.0.1</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.pmease</groupId>
|
|
<artifactId>commons.bootstrap</artifactId>
|
|
<version>1.0.7</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.pmease</groupId>
|
|
<artifactId>commons.test</artifactId>
|
|
<version>1.0.7</version>
|
|
</dependency>
|
|
</dependencies>
|
|
<repositories>
|
|
<repository>
|
|
<id>pmeaseRepo</id>
|
|
<name>PMEase Repository</name>
|
|
<releases>
|
|
<enabled>true</enabled>
|
|
<updatePolicy>never</updatePolicy>
|
|
<checksumPolicy>fail</checksumPolicy>
|
|
</releases>
|
|
<snapshots>
|
|
<enabled>true</enabled>
|
|
<updatePolicy>always</updatePolicy>
|
|
<checksumPolicy>fail</checksumPolicy>
|
|
</snapshots>
|
|
<url>http://artifact.pmease.com/</url>
|
|
</repository>
|
|
</repositories>
|
|
</project>
|