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.
|
- <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>
|