pom.xml 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>com.jzdsh</groupId>
  6. <artifactId>utils</artifactId>
  7. <version>1.1</version>
  8. <name>utils</name>
  9. <description>the general class library of jzdsh</description>
  10. <url>http://www.jzdsh.com/</url>
  11. <properties>
  12. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  13. <maven.compiler.source>1.8</maven.compiler.source>
  14. <maven.compiler.target>1.8</maven.compiler.target>
  15. </properties>
  16. <dependencies>
  17. <!--google jar-->
  18. <dependency>
  19. <groupId>com.googlecode.juniversalchardet</groupId>
  20. <artifactId>juniversalchardet</artifactId>
  21. <version>1.0.3</version>
  22. </dependency>
  23. <!--apache jar-->
  24. <dependency>
  25. <groupId>org.apache.commons</groupId>
  26. <artifactId>commons-lang3</artifactId>
  27. <version>3.4</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>commons-io</groupId>
  31. <artifactId>commons-io</artifactId>
  32. <version>2.5</version>
  33. </dependency>
  34. </dependencies>
  35. <build>
  36. </build>
  37. <distributionManagement>
  38. <repository>
  39. <id>rdc-releases</id>
  40. <url>https://repo.rdc.aliyun.com/repository/124979-release-U0ysiy/</url>
  41. </repository>
  42. <snapshotRepository>
  43. <id>rdc-snapshots</id>
  44. <url>https://repo.rdc.aliyun.com/repository/124979-snapshot-42WeYF/</url>
  45. </snapshotRepository>
  46. </distributionManagement>
  47. </project>