3 Star 7 Fork 5

hm-tools / hm-tools-GB-T2260

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
pom.xml 10.45 KB
一键复制 编辑 原始数据 按行查看 历史
hm-tools 提交于 2018-11-10 18:42 . 开始 0.0.7-SNAPSHOT
<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>top.hmtools</groupId>
<artifactId>hm-tools-gb-t2260</artifactId>
<version>0.0.7-SNAPSHOT</version>
<name>hm-tools-gb-t2260</name>
<description>(神奇码农)嗨啵的中华人民共和国行政地区名称字典工具</description>
<url>http://www.hmtools.top</url>
<licenses>
<license>
<name>The Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<developers>
<developer>
<name>hm-tools</name>
<email>hm-tools@hybomyth.com</email>
<organization>(神奇码农)嗨啵</organization>
<organizationUrl></organizationUrl>
</developer>
</developers>
<properties>
<!-- 文件拷贝时的编码 -->
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<!-- 编译时的编码 -->
<maven.compiler.encoding>UTF-8</maven.compiler.encoding>
<luceneVersion>5.2.1</luceneVersion>
</properties>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
<!-- <dependency> <groupId>org.apache.lucene</groupId> <artifactId>lucene-demo</artifactId>
<version>${luceneVersion}</version> </dependency> -->
<dependency>
<groupId>org.apache.lucene</groupId>
<artifactId>lucene-core</artifactId>
<version>${luceneVersion}</version>
</dependency>
<dependency>
<groupId>org.apache.lucene</groupId>
<artifactId>lucene-analyzers-smartcn</artifactId>
<version>${luceneVersion}</version>
</dependency>
<dependency>
<groupId>org.apache.lucene</groupId>
<artifactId>lucene-queryparser</artifactId>
<version>${luceneVersion}</version>
</dependency>
<dependency>
<groupId>org.apache.lucene</groupId>
<artifactId>lucene-highlighter</artifactId>
<version>${luceneVersion}</version>
</dependency>
<dependency>
<groupId>org.ansj</groupId>
<artifactId>ansj_lucene5_plug</artifactId>
<version>5.1.1.2</version>
</dependency>
<dependency>
<groupId>org.ansj</groupId>
<artifactId>ansj_seg</artifactId>
<version>5.1.5</version>
</dependency>
</dependencies>
<!-- 配置远程发布到私服,mvn deploy -->
<!-- <distributionManagement> <repository> <id>releases</id> <name>Nexus
Release Repository</name> <url>http://192.168.0.54:8080/nexus/content/repositories/releases/</url>
</repository> <snapshotRepository> <id>snapshots</id> <name>Nexus Snapshot
Repository</name> <url>http://192.168.0.54:8080/nexus/content/repositories/snapshots/</url>
</snapshotRepository> </distributionManagement> -->
<!-- 配置远程发布到中央仓库,mvn deploy -->
<distributionManagement>
<snapshotRepository>
<id>ossrh</id><!-- 必须同 setting.xml 中的 server配置项目中的 id 一致,否则会报401错误 -->
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
</snapshotRepository>
<repository>
<id>ossrh</id><!-- 必须同 setting.xml 中的 server配置项目中的 id 一致,否则会报401错误 -->
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
<scm>
<developerConnection>svn://gitee.com/hm-tools/hm-tools-GB-T2260</developerConnection>
<url>https://gitee.com/hm-tools/hm-tools-GB-T2260</url>
</scm>
<build>
<plugins>
<!-- 配置 mvn test 所使用的插件,mvn test命令依赖此插件,如果此插件没被成功下载到本地仓库,使用mvn
test 命令时会报错。可以手动配置此 插件改版本号,以方便从中央服务器下载可用的版本插件 ,默认的版本可能会因为网络原因没有正常被下载使用。 -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.17</version>
<configuration>
<testFailureIgnore>true</testFailureIgnore>
</configuration>
</plugin>
<!-- 配置编译时所需要的JDK版本,默认是1.5版本 -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.5.1</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
<encoding>${maven.compiler.encoding}</encoding>
</configuration>
</plugin>
<!-- 配置发布本工程到私服的插件。执行方式:选择本工程==》鼠标右键==》run as ==》 maven build
==》deploy -e ==》右下角的 run -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.7</version>
<configuration>
<skip />
</configuration>
</plugin>
<!-- 要将源码放上去,需要加入这个插件 deploy -e 执行时,同时发布源代码到nexus私服 -->
<plugin>
<artifactId>maven-source-plugin</artifactId>
<version>2.1</version>
<configuration>
<attach>true</attach>
</configuration>
<executions>
<execution>
<phase>compile</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- 生成JavaDoc包(API文档) -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.7</version>
<executions>
<execution>
<id>attach-javadocs</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<encoding>${maven.compiler.encoding}</encoding>
<additionalparam>-Xdoclint:none</additionalparam>
</configuration>
</execution>
</executions>
</plugin>
<!-- maven操作SVN服务器 插件(scm),即SVN的更新最新代码到本地,提交更改后的代码到SVN服务器。该插件依赖本机安装的SVN乌龟客户端。其中,提交命令为:
mvn -Dmessage="注释说明" scm:checkin -X -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-scm-plugin</artifactId>
<version>1.8.1</version>
<configuration>
<connectionType>developerConnection</connectionType>
</configuration>
</plugin>
<!-- 发布正式版本到指定网络路径,执行命令前,必须前提交所有代码到SVN,或者git,否则执行失败。 执行命令: release:clean
release:prepare release:perform,其中:release:clean 清理,release:prepare 自动打tag到SVN,
并更新主干版本号。release:perform 打包正式版本到nexus -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.5.3</version>
<configuration>
<tagBase>svn://gitee.com/hm-tools/hm-tools-GB-T2260/tags</tagBase>
<checkModificationExcludes>
<checkModificationExclude>.project</checkModificationExclude>
<checkModificationExclude>.classpath</checkModificationExclude>
<checkModificationExclude>release.properties</checkModificationExclude>
<checkModificationExclude>target/*</checkModificationExclude>
</checkModificationExcludes>
</configuration>
</plugin>
<!--################################# 此段插件代码块禁止发布 gitee.com start############### -->
<!-- maven gpg 自动签名插件,发布jar包到maven中央库,需要对文件进行gpg加密传输,加入此段代码后,先要在本机安装Kleopatra软件,使用Kleopatra先生成一对RSA密钥,
并发布密钥到服务器(gpg服务器)。 执行 verify -Dgpg.passphrase=thephrase 细节参见官方教程:http://maven.apache.org/plugins/maven-gpg-plugin/usage.html -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<!--################################# 此段插件代码块禁止发布 gitee.com end############### -->
</plugins>
</build>
</project>
Java
1
https://gitee.com/hm-tools/hm-tools-GB-T2260.git
git@gitee.com:hm-tools/hm-tools-GB-T2260.git
hm-tools
hm-tools-GB-T2260
hm-tools-GB-T2260
master

搜索帮助