1 Star 0 Fork 0

weir2008 / cws_evaluation

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
pom.xml 10.26 KB
一键复制 编辑 原始数据 按行查看 历史
ysc 提交于 2015-12-26 02:19 . update repository url
<!--
~ APDPlat - Application Product Development Platform
~ Copyright (c) 2013, 杨尚川, yang-shangchuan@qq.com
~
~ This program is free software: you can redistribute it and/or modify
~ it under the terms of the GNU General Public License as published by
~ the Free Software Foundation, either version 3 of the License, or
~ (at your option) any later version.
~
~ This program is distributed in the hope that it will be useful,
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
~ GNU General Public License for more details.
~
~ You should have received a copy of the GNU General Public License
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
-->
<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>org.apdplat</groupId>
<artifactId>cws_evaluation</artifactId>
<version>1.1</version>
<packaging>jar</packaging>
<name>cws_evaluation</name>
<url>https://github.com/ysc/cws_evaluation</url>
<description>
中文分词器分词效果评估
</description>
<organization>
<name>APDPlat</name>
<url>http://apdplat.org/</url>
</organization>
<licenses>
<license>
<name>GNU GENERAL PUBLIC LICENSE, Version 3</name>
<url>http://www.gnu.org/licenses/gpl.html</url>
</license>
</licenses>
<inceptionYear>2014</inceptionYear>
<scm>
<url>https://github.com/ysc/cws_evaluation</url>
<connection>scm:git:git://github.com/ysc/cws_evaluation.git</connection>
<developerConnection>scm:git:ssh://git@github.com/ysc/cws_evaluation.git</developerConnection>
<tag>HEAD</tag>
</scm>
<developers>
<developer>
<name>杨尚川</name>
<email>ysc@apdplat.org</email>
<url>http://yangshangchuan.iteye.com</url>
</developer>
</developers>
<repositories>
<repository>
<id>lib_id</id>
<url>file://${project.basedir}/lib</url>
</repository>
<repository>
<id>mvn-repo</id>
<url>http://maven.nlpcn.org</url>
</repository>
</repositories>
<build>
<sourceDirectory>src</sourceDirectory>
<resources>
<resource>
<directory>src</directory>
</resource>
</resources>
<testOutputDirectory>test</testOutputDirectory>
<testResources>
<testResource>
<directory>test</directory>
</testResource>
</testResources>
<plugins>
<!-- 编译插件, 设定JDK版本 -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven-compiler-plugin.version}</version>
<configuration>
<encoding>${project.build.sourceEncoding}</encoding>
<source>${java.version}</source>
<target>${java.version}</target>
<showDeprecation>true</showDeprecation>
<showWarnings>true</showWarnings>
<debug>true</debug>
</configuration>
</plugin>
<!-- 打包插件 -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>${maven-jar-plugin.version}</version>
</plugin>
<!-- 单元测试插件 -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${maven-surefire-plugin.version}</version>
<configuration>
<testFailureIgnore>true</testFailureIgnore>
</configuration>
</plugin>
<!-- resource插件, 设定编码 -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>${maven-resources-plugin.version}</version>
<configuration>
<encoding>${project.build.sourceEncoding}</encoding>
</configuration>
</plugin>
<!-- source插件,打包源码 -->
<plugin>
<artifactId>maven-source-plugin</artifactId>
<version>${maven-source-plugin.version}</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- 运行 mvn sonar:sonar 可将项目发布给质量管理平台-->
<!-- 软件环境: jdk1.7.0_51 apache-maven-3.0.4 sonar-3.6 -->
<plugin>
<groupId>org.codehaus.sonar</groupId>
<artifactId>sonar-maven3-plugin</artifactId>
<version>${sonar-maven3-plugin.version}</version>
</plugin>
</plugins>
</build>
<properties>
<java.version>1.8</java.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven-compiler-plugin.version>3.0</maven-compiler-plugin.version>
<maven-jar-plugin.version>2.4</maven-jar-plugin.version>
<maven-surefire-plugin.version>2.14</maven-surefire-plugin.version>
<maven-resources-plugin.version>2.6</maven-resources-plugin.version>
<maven-source-plugin.version>2.2.1</maven-source-plugin.version>
<sonar-maven3-plugin.version>3.5</sonar-maven3-plugin.version>
<junit.version>4.11</junit.version>
<slf4j-api.version>1.6.4</slf4j-api.version>
<logback-classic.version>0.9.28</logback-classic.version>
<word.version>1.2</word.version>
<ansj.version>2.0.8</ansj.version>
<stanford.version>3.5.2</stanford.version>
<jieba.version>1.0.0</jieba.version>
<mmseg4j.version>1.10.0</mmseg4j.version>
<smartcn.version>5.1.0</smartcn.version>
<hanlp.version>portable-1.1.5</hanlp.version>
</properties>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<!-- SLF4J日志框架API -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j-api.version}</version>
</dependency>
<!-- LOGBACK日志实现提供者 -->
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>${logback-classic.version}</version>
<exclusions>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
</exclusions>
<scope>runtime</scope>
</dependency>
<!-- word分词器 -->
<dependency>
<groupId>org.apdplat</groupId>
<artifactId>word</artifactId>
<version>${word.version}</version>
</dependency>
<!-- ansj分词器 -->
<dependency>
<groupId>org.ansj</groupId>
<artifactId>ansj_seg</artifactId>
<version>${ansj.version}</version>
</dependency>
<!-- stanford分词器 -->
<dependency>
<groupId>edu.stanford.nlp</groupId>
<artifactId>stanford-corenlp</artifactId>
<version>${stanford.version}</version>
</dependency>
<dependency>
<groupId>edu.stanford.nlp</groupId>
<artifactId>stanford-corenlp</artifactId>
<version>${stanford.version}</version>
<classifier>models-chinese</classifier>
</dependency>
<!-- fudannlp分词器 -->
<dependency>
<groupId>fudan</groupId>
<artifactId>fudannlp</artifactId>
<version>1.6.1</version>
</dependency>
<!-- fudannlp分词器 依赖 trove4j-->
<dependency>
<groupId>net.sf.trove4j</groupId>
<artifactId>trove4j</artifactId>
<version>3.0.3</version>
</dependency>
<!-- jieba分词器 -->
<dependency>
<groupId>com.huaban</groupId>
<artifactId>jieba-analysis</artifactId>
<version>${jieba.version}</version>
</dependency>
<!-- jcseg分词器 -->
<dependency>
<groupId>jcseg</groupId>
<artifactId>jcseg-core</artifactId>
<version>1.9.5</version>
</dependency>
<!-- mmseg4j分词器 -->
<dependency>
<groupId>com.chenlb.mmseg4j</groupId>
<artifactId>mmseg4j-core</artifactId>
<version>${mmseg4j.version}</version>
</dependency>
<!-- ik-analyzer分词器 -->
<dependency>
<groupId>ik</groupId>
<artifactId>IKAnalyzer</artifactId>
<version>2012FF_u1</version>
</dependency>
<!-- smartcn分词器 -->
<dependency>
<groupId>org.apache.lucene</groupId>
<artifactId>lucene-analyzers-smartcn</artifactId>
<version>${smartcn.version}</version>
</dependency>
<!-- smartcn分词器 需要lucene依赖 且和lucene版本同步 -->
<dependency>
<groupId>org.apache.lucene</groupId>
<artifactId>lucene-core</artifactId>
<version>${smartcn.version}</version>
</dependency>
<!-- HanLP分词器 -->
<dependency>
<groupId>com.hankcs</groupId>
<artifactId>hanlp</artifactId>
<version>${hanlp.version}</version>
</dependency>
</dependencies>
</project>
1
https://gitee.com/weir_admin/cws_evaluation.git
git@gitee.com:weir_admin/cws_evaluation.git
weir_admin
cws_evaluation
cws_evaluation
master

搜索帮助