You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

pom.xml 2.1 kB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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>eshore.cn.it</groupId>
  5. <artifactId>nlp-sentiment</artifactId>
  6. <version>0.0.1-SNAPSHOT</version>
  7. <packaging>jar</packaging>
  8. <name>nlp-sentiment</name>
  9. <url>http://maven.apache.org</url>
  10. <properties>
  11. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  12. <commons.io.version>2.4</commons.io.version>
  13. <dom4j.version>1.6.1</dom4j.version>
  14. <lingpipe.version>4.1.0</lingpipe.version>
  15. <jieba.version>1.0.0</jieba.version>
  16. <hanlp.version>1.1.0</hanlp.version>
  17. <!-- 无法到中央仓库下载的jar包就集中存放到这个位置 -->
  18. <maven.libs.home>F:/java_git_projects/nlp-sentiment/libs</maven.libs.home>
  19. </properties>
  20. <dependencies>
  21. <dependency>
  22. <groupId>junit</groupId>
  23. <artifactId>junit</artifactId>
  24. <version>3.8.1</version>
  25. <scope>test</scope>
  26. </dependency>
  27. <dependency>
  28. <groupId>commons-io</groupId>
  29. <artifactId>commons-io</artifactId>
  30. <version>${commons.io.version}</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>dom4j</groupId>
  34. <artifactId>dom4j</artifactId>
  35. <version>${dom4j.version}</version>
  36. </dependency>
  37. <!-- 此处需要手动到lingpipe官网下载lingpipe的corejar包 -->
  38. <dependency>
  39. <groupId>com.aliasi</groupId>
  40. <artifactId>lingpipe</artifactId>
  41. <version>${lingpipe.version}</version>
  42. <scope>system</scope>
  43. <systemPath>${maven.libs.home}/lingpipe-4.1.0.jar</systemPath>
  44. </dependency>
  45. <!-- 此处添加结巴分词器 -->
  46. <dependency>
  47. <groupId>com.huaban</groupId>
  48. <artifactId>jieba-analysis</artifactId>
  49. <version>${jieba.version}</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>com.hankcs</groupId>
  53. <artifactId>hanlp</artifactId>
  54. <version>${hanlp.version}</version>
  55. </dependency>
  56. </dependencies>
  57. </project>

基于自然语言处理的情感分析工具

Contributors (1)