-
Notifications
You must be signed in to change notification settings - Fork 723
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
adapt the fnlp-core for git maven release package
- Loading branch information
Showing
1 changed file
with
39 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ | |
</parent> | ||
<groupId>org.fnlp</groupId> | ||
<artifactId>fnlp-core</artifactId> | ||
<version>2.1-SNAPSHOT</version> | ||
<version>2.1-SNAPSHOT-gubnoi-v1</version> | ||
This comment has been minimized.
Sorry, something went wrong. |
||
<name>fnlp-core</name> | ||
<url>https://github.com/xpqiu/fnlp/</url> | ||
<description>FNLP is developed for Chinese natural language processing (NLP), which also includes some machine learning algorithms and data sets to achieve the NLP tasks. FNLP is distributed under LGPL3.0.</description> | ||
|
@@ -18,6 +18,13 @@ | |
<url>http://www.fnlp.org</url> | ||
</organization> | ||
|
||
<pluginRepositories> | ||
This comment has been minimized.
Sorry, something went wrong. |
||
<pluginRepository> | ||
<id>synergian-repo</id> | ||
<url>https://raw.github.com/synergian/wagon-git/releases</url> | ||
</pluginRepository> | ||
</pluginRepositories> | ||
|
||
<scm> | ||
<url>scm:git:[email protected]:xpqiu/fnlp.git</url> | ||
<connection>scm:git:[email protected]:xpqiu/fnlp.git</connection> | ||
|
@@ -28,6 +35,17 @@ | |
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
</properties> | ||
<dependencies> | ||
|
||
This comment has been minimized.
Sorry, something went wrong. |
||
<dependency> | ||
<groupId>net.sf.trove4j</groupId> | ||
<artifactId>trove4j</artifactId> | ||
<version>3.0.3</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>commons-cli</groupId> | ||
<artifactId>commons-cli</artifactId> | ||
<version>1.2</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>junit</groupId> | ||
<artifactId>junit</artifactId> | ||
|
@@ -40,14 +58,18 @@ | |
<profile> | ||
<id>release</id> | ||
<distributionManagement> | ||
<snapshotRepository> | ||
<id>sonatype-nexus-snapshots</id> | ||
<url>https://oss.sonatype.org/content/repositories/snapshots/</url> | ||
</snapshotRepository> | ||
<repository> | ||
<id>sonatype-nexus-staging</id> | ||
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> | ||
</repository> | ||
|
||
<repository> | ||
<id>com.gubnoi.fnlp</id> | ||
This comment has been minimized.
Sorry, something went wrong. |
||
<name>Gubnoi NLP</name> | ||
<url>git:releases://[email protected]:jing-zhou/fnlp.git</url> | ||
</repository> | ||
|
||
<snapshotRepository> | ||
<id>com.gubnoi.fnlp</id> | ||
<name>Gubnoi NLP</name> | ||
<url>git:snapshots://[email protected]:jing-zhou/fnlp.git</url> | ||
</snapshotRepository> | ||
</distributionManagement> | ||
<build> | ||
<plugins> | ||
|
@@ -99,6 +121,14 @@ | |
</profiles> | ||
|
||
<build> | ||
<extensions> | ||
<extension> | ||
This comment has been minimized.
Sorry, something went wrong. |
||
<groupId>ar.com.synergian</groupId> | ||
<artifactId>wagon-git</artifactId> | ||
<version>0.2.5</version> | ||
</extension> | ||
</extensions> | ||
|
||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
|
this might be ignored