12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <?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.jzdsh</groupId>
- <artifactId>utils</artifactId>
- <version>1.0</version>
- <name>utils</name>
- <description>the general class library of jzdsh</description>
- <url>http://www.jzdsh.com/</url>
- <properties>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- <maven.compiler.source>1.8</maven.compiler.source>
- <maven.compiler.target>1.8</maven.compiler.target>
- </properties>
- <dependencies>
- <!--google jar-->
- <dependency>
- <groupId>com.googlecode.juniversalchardet</groupId>
- <artifactId>juniversalchardet</artifactId>
- <version>1.0.3</version>
- </dependency>
- <!--apache jar-->
- <dependency>
- <groupId>org.apache.commons</groupId>
- <artifactId>commons-lang3</artifactId>
- <version>3.4</version>
- </dependency>
- <dependency>
- <groupId>commons-io</groupId>
- <artifactId>commons-io</artifactId>
- <version>2.5</version>
- </dependency>
- </dependencies>
- <build>
- </build>
- <distributionManagement>
- <repository>
- <id>rdc-releases</id>
- <url>https://repo.rdc.aliyun.com/repository/124979-release-U0ysiy/</url>
- </repository>
- <snapshotRepository>
- <id>rdc-snapshots</id>
- <url>https://repo.rdc.aliyun.com/repository/124979-snapshot-42WeYF/</url>
- </snapshotRepository>
- </distributionManagement>
- </project>
|