pom.xml 989 B

12345678910111213141516171819202122232425262728293031323334
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>me.yoqi</groupId>
  5. <artifactId>f2j</artifactId>
  6. <version>0.0.1-SNAPSHOT</version>
  7. <name>f2j</name>
  8. <description>繁体字批量转简体字</description>
  9. <build>
  10. <sourceDirectory>src</sourceDirectory>
  11. <plugins>
  12. <plugin>
  13. <artifactId>maven-compiler-plugin</artifactId>
  14. <version>3.6.1</version>
  15. <configuration>
  16. <source />
  17. <target />
  18. </configuration>
  19. </plugin>
  20. </plugins>
  21. </build>
  22. <dependencies>
  23. <dependency>
  24. <groupId>com.github.houbb</groupId>
  25. <artifactId>opencc4j</artifactId>
  26. <version>1.0.2</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.apache.commons</groupId>
  30. <artifactId>commons-io</artifactId>
  31. <version>1.3.2</version>
  32. </dependency>
  33. </dependencies>
  34. </project>