pom.xml 937 B

12345678910111213141516171819202122232425262728
  1. <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">
  2. <modelVersion>4.0.0</modelVersion>
  3. <groupId>ChineseParticiple</groupId>
  4. <artifactId>ChineseParticiple</artifactId>
  5. <version>0.0.1-SNAPSHOT</version>
  6. <description>中文分词项目</description>
  7. <build>
  8. <sourceDirectory>src</sourceDirectory>
  9. <plugins>
  10. <plugin>
  11. <artifactId>maven-compiler-plugin</artifactId>
  12. <version>3.5.1</version>
  13. <configuration>
  14. <source>1.7</source>
  15. <target>1.7</target>
  16. </configuration>
  17. </plugin>
  18. </plugins>
  19. </build>
  20. <dependencies>
  21. <dependency>
  22. <groupId>org.ansj</groupId>
  23. <artifactId>ansj_seg</artifactId>
  24. <version>5.1.1</version>
  25. <scope>runtime</scope>
  26. </dependency>
  27. </dependencies>
  28. </project>