1 Star 0 Fork 69

lili6145/nlp-sentiment

forked from gitclebeg/nlp-sentiment 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
pom.xml 2.02 KB
一键复制 编辑 原始数据 按行查看 历史
<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>eshore.cn.it</groupId>
<artifactId>nlp-sentiment</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging>
<name>nlp-sentiment</name>
<url>http://maven.apache.org</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<commons.io.version>2.4</commons.io.version>
<dom4j.version>1.6.1</dom4j.version>
<lingpipe.version>4.1.0</lingpipe.version>
<jieba.version>1.0.0</jieba.version>
<hanlp.version>1.1.0</hanlp.version>
<!-- 无法到中央仓库下载的jar包就集中存放到这个位置 -->
<maven.libs.home>F:/java_git_projects/nlp-sentiment/libs</maven.libs.home>
</properties>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>${commons.io.version}</version>
</dependency>
<dependency>
<groupId>dom4j</groupId>
<artifactId>dom4j</artifactId>
<version>${dom4j.version}</version>
</dependency>
<!-- 此处需要手动到lingpipe官网下载lingpipe的corejar包 -->
<dependency>
<groupId>com.aliasi</groupId>
<artifactId>lingpipe</artifactId>
<version>${lingpipe.version}</version>
<scope>system</scope>
<systemPath>${maven.libs.home}/lingpipe-4.1.0.jar</systemPath>
</dependency>
<!-- 此处添加结巴分词器 -->
<dependency>
<groupId>com.huaban</groupId>
<artifactId>jieba-analysis</artifactId>
<version>${jieba.version}</version>
</dependency>
<dependency>
<groupId>com.hankcs</groupId>
<artifactId>hanlp</artifactId>
<version>${hanlp.version}</version>
</dependency>
</dependencies>
</project>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/634118906/nlp-sentiment.git
git@gitee.com:634118906/nlp-sentiment.git
634118906
nlp-sentiment
nlp-sentiment
master

搜索帮助