Skip to content

Commit

Permalink
Updated a little for 3.7.0. Closes stanfordnlp#289.
Browse files Browse the repository at this point in the history
  • Loading branch information
manning authored and Stanford NLP committed Nov 9, 2016
1 parent b6afa7f commit 1d33b98
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>edu.stanford.nlp</groupId>
<artifactId>stanford-corenlp</artifactId>
<version>3.6.0</version>
<version>3.7.0</version>
<packaging>jar</packaging>
<name>Stanford CoreNLP</name>
<description>Stanford CoreNLP provides a set of natural language analysis tools which can take raw English language text input and give the base forms of words, their parts of speech, whether they are names of companies, people, etc., normalize dates, times, and numeric quantities, mark up the structure of sentences in terms of phrases and word dependencies, and indicate which noun phrases refer to the same entities. It provides the foundational building blocks for higher level text understanding applications.</description>
Expand All @@ -14,8 +14,8 @@
</license>
</licenses>
<scm>
<url>https://nlp.stanford.edu/software/stanford-corenlp-2015-12-06.zip</url>
<connection>https://nlp.stanford.edu/software/stanford-corenlp-2015-12-06.zip</connection>
<url>https://nlp.stanford.edu/software/stanford-corenlp-2016-10-30.zip</url>
<connection>https://nlp.stanford.edu/software/stanford-corenlp-2016-10-30.zip</connection>
</scm>
<developers>
<developer>
Expand Down Expand Up @@ -89,31 +89,37 @@
<artifactId>xom</artifactId>
<version>1.2.10</version>
</dependency>

<dependency>
<groupId>joda-time</groupId>
<artifactId>joda-time</artifactId>
<version>2.9</version>
</dependency>

<dependency>
<groupId>com.googlecode.efficient-java-matrix-library</groupId>
<artifactId>ejml</artifactId>
<version>0.23</version>
</dependency>

<dependency>
<groupId>javax.json</groupId>
<artifactId>javax.json-api</artifactId>
<version>1.0</version>
</dependency>

<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.12</version>
</dependency>

<dependency>
<groupId>com.google.protobuf</groupId>
<artifactId>protobuf-java</artifactId>
<version>2.6.1</version>
</dependency>

</dependencies>
<build>
<sourceDirectory>src</sourceDirectory>
Expand All @@ -133,7 +139,7 @@
<configuration>
<artifacts>
<artifact>
<file>${project.basedir}/stanford-corenlp-3.6.0-models.jar</file>
<file>${project.basedir}/stanford-corenlp-3.7.0-models.jar</file>
<type>jar</type>
<classifier>models</classifier>
</artifact>
Expand Down

0 comments on commit 1d33b98

Please sign in to comment.