Skip to content

Commit

Permalink
Last module in place.
Browse files Browse the repository at this point in the history
  • Loading branch information
benson-basis committed Jul 21, 2016
1 parent f9108a5 commit 171a98d
Show file tree
Hide file tree
Showing 3 changed files with 93 additions and 164 deletions.
31 changes: 30 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,30 @@
# nlp4j-unified
# NLP4J

The NLP4J project provides a NLP toolkit for JVM languages. This project is under the [Apache 2](http://www.apache.org/licenses/LICENSE-2.0) license and is currently developed by the [NLP Research Group](http://nlp.mathcs.emory.edu) at [Emory University](http://emory.edu). Please join our [forum](https://groups.google.com/forum/#!forum/emorynlp) to get notifications about new releases and give your feedback about this project.

* Latest release: [1.1.2](http://search.maven.org/#search%7Cga%7C1%7Cnlp4j) (06/29/2016).
* [Release notes](md/quickstart/release.md).
* [Google groups](https://groups.google.com/forum/#!forum/emorynlp).

## Quick Start

* [How to install](md/quickstart/install.md).
* [How to train](md/quickstart/train.md).
* [How to decode](md/quickstart/decode.md).
* [NLP4J demo](http://nlp.mathcs.emory.edu:8080/nlp4j).

## Components

* [Tokenization](https://github.com/emorynlp/tokenization).
* [Morphological analysis](https://github.com/emorynlp/morphological_analysis).
* [Part-of-speech tagging](md/components/part_of_speech_tagging.md).
* [Named entity recognition](md/components/named_entity_recognition.md).
* [Dependency parsing](md/components/dependency_parsing.md).
* Semantic role labeling (coming soon).
* Sentiment analysis (coming soon).
* Word2Vec & Struct2Vec (coming soon).

## Supplements

* [English lexica and models](md/supplements/english-lexica-models.md) (hosted in [bitbucket](https://bitbucket.org/emorynlp/nlp4j-english)).
* [Data format](md/supplements/data-format.md).
212 changes: 53 additions & 159 deletions nlp4j/pom.xml
Original file line number Diff line number Diff line change
@@ -1,161 +1,55 @@
<?xml version="1.0"?>
<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>edu.emory.mathcs.nlp</groupId>
<artifactId>nlp4j</artifactId>
<version>1.1.3-SNAPSHOT</version>
<packaging>jar</packaging>

<url>http://nlp.mathcs.emory.edu</url>

<scm>
<url>https://github.com/emorynlp/nlp4j</url>
<connection>scm:git:git://github.com/emorynlp/nlp4j.git</connection>
<developerConnection>scm:git:[email protected]:emorynlp/nlp4j.git</developerConnection>
<tag>HEAD</tag>
</scm>

<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>9</version>
</parent>

<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>

<developers>
<developer>
<id>jinho.choi</id>
<name>Jinho D. Choi</name>
<email>{id}@emory.edu</email>
</developer>
</developers>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>

<build>
<resources>
<resource>
<directory>src/main/resources</directory>
<includes>
<include>**/*</include>
</includes>
</resource>
</resources>

<pluginManagement>
<plugins>
<plugin>
<groupId>org.eclipse.m2e</groupId>
<artifactId>lifecycle-mapping</artifactId>
<version>1.0.0</version>
<configuration>
<lifecycleMappingMetadata>
<pluginExecutions>
<pluginExecution>
<pluginExecutionFilter>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<versionRange>[1.0.0,)</versionRange>
<goals>
<goal>enforce</goal>
</goals>
</pluginExecutionFilter>
<action>
<ignore />
</action>
</pluginExecution>
</pluginExecutions>
</lifecycleMappingMetadata>
</configuration>
</plugin>
</plugins>
</pluginManagement>

<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<configuration>
<autoVersionSubmodules>true</autoVersionSubmodules>
<useReleaseProfile>false</useReleaseProfile>
<releaseProfiles>release</releaseProfiles>
<goals>deploy</goals>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.5.1</version>
<configuration>
<source>${maven.compiler.source}</source>
<target>${maven.compiler.target}</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.10.3</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<additionalparam>-Xdoclint:none</additionalparam>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>

<dependencies>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>1.7.21</version>
</dependency>
<dependency>
<groupId>edu.emory.mathcs.nlp</groupId>
<artifactId>nlp4j-common</artifactId>
<version>1.1.2</version>
</dependency>
<dependency>
<groupId>edu.emory.mathcs.nlp</groupId>
<artifactId>nlp4j-core</artifactId>
<version>1.1.2</version>
</dependency>
<dependency>
<groupId>edu.emory.mathcs.nlp</groupId>
<artifactId>nlp4j-tokenization</artifactId>
<version>1.1.2</version>
</dependency>
<dependency>
<groupId>edu.emory.mathcs.nlp</groupId>
<artifactId>nlp4j-morphology</artifactId>
<version>1.1.2</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>18.0</version>
<scope>test</scope>
</dependency>
</dependencies>
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>edu.emory.mathcs.nlp</groupId>
<artifactId>nlp4j-unified</artifactId>
<version>1.1.3-SNAPSHOT</version>
</parent>
<artifactId>nlp4j</artifactId>
<dependencies>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<!-- don't leak into tree, but use in appassembler and tests -->
<optional>true</optional>
</dependency>
<dependency>
<groupId>edu.emory.mathcs.nlp</groupId>
<artifactId>nlp4j-common</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>edu.emory.mathcs.nlp</groupId>
<artifactId>nlp4j-core</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>edu.emory.mathcs.nlp</groupId>
<artifactId>nlp4j-tokenization</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>edu.emory.mathcs.nlp</groupId>
<artifactId>nlp4j-morphology</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>edu.emory.mathcs.nlp</groupId>
<artifactId>nlp4j-english</artifactId>
<!-- Don't leak into users' dependencies, but be available in
tests and appassembler. -->
<optional>true</optional>
<version>1.1.2</version>
</dependency>
</dependencies>
</project>
14 changes: 10 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,11 @@
<maven.compiler.target>1.8</maven.compiler.target>
</properties>
<modules>
<module>common</module>
<module>core</module>
<module>tokenization</module>
<module>morphology</module>
<module>common</module>
<module>core</module>
<module>tokenization</module>
<module>morphology</module>
<module>nlp4j</module>
</modules>
<build>
<pluginManagement>
Expand Down Expand Up @@ -161,6 +162,11 @@
<artifactId>commons-csv</artifactId>
<version>1.2</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>18.0</version>
</dependency>
</dependencies>
</dependencyManagement>
</project>

0 comments on commit 171a98d

Please sign in to comment.