2021-10-03 03:17:44 -07:00
<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.stanford.nlp</groupId>
<artifactId > stanford-corenlp</artifactId>
2025-06-07 12:56:15 -07:00
<version > 4.5.10</version>
2021-10-03 03:17:44 -07:00
<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>
<url > https://nlp.stanford.edu/software/corenlp.html</url>
<licenses >
<license >
<name > GNU General Public License Version 3</name>
<url > http://www.gnu.org/licenses/gpl-3.0.txt</url>
</license>
</licenses>
<scm >
2025-06-07 12:56:15 -07:00
<url > https://nlp.stanford.edu/software/stanford-corenlp-4.5.10.zip</url>
<connection > https://nlp.stanford.edu/software/stanford-corenlp-4.5.10.zip</connection>
2021-10-03 03:17:44 -07:00
</scm>
<developers >
<developer >
<id > christopher.manning</id>
<name > Christopher Manning</name>
<email > manning@stanford.edu</email>
</developer>
<developer >
<id > jason.bolton</id>
<name > Jason Bolton</name>
<email > jebolton@stanford.edu</email>
</developer>
<developer >
<id > john.bauer</id>
<name > John Bauer</name>
<email > horatio@gmail.com</email>
</developer>
</developers>
<properties >
<encoding > UTF-8</encoding>
</properties>
<dependencies >
<dependency >
<groupId > com.apple</groupId>
<artifactId > AppleJavaExtensions</artifactId>
<version > 1.4</version>
</dependency>
<dependency >
<groupId > de.jollyday</groupId>
<artifactId > jollyday</artifactId>
<version > 0.4.9</version>
</dependency>
<dependency >
<groupId > org.apache.commons</groupId>
<artifactId > commons-lang3</artifactId>
<version > 3.3.1</version>
</dependency>
2023-10-08 11:52:04 -07:00
<!-- https://mvnrepository.com/artifact/jakarta.servlet/jakarta.servlet - api -->
2021-10-03 03:17:44 -07:00
<dependency >
2023-10-08 11:52:04 -07:00
<groupId > jakarta.servlet</groupId>
<artifactId > jakarta.servlet-api</artifactId>
<version > 4.0.4</version>
2021-10-03 03:17:44 -07:00
</dependency>
<dependency >
<groupId > xom</groupId>
<artifactId > xom</artifactId>
2023-05-16 22:23:05 -07:00
<version > 1.3.9</version>
2021-10-03 03:17:44 -07:00
</dependency>
2023-09-15 17:58:18 -07:00
<!-- https://mvnrepository.com/artifact/xalan/xalan -->
<dependency >
<groupId > xalan</groupId>
<artifactId > xalan</artifactId>
<version > 2.7.3</version>
</dependency>
2023-09-18 07:25:47 -07:00
<dependency >
<groupId > xalan</groupId>
<artifactId > serializer</artifactId>
<version > 2.7.3</version>
</dependency>
2023-09-15 17:58:18 -07:00
2021-10-03 03:17:44 -07:00
<dependency >
<groupId > joda-time</groupId>
<artifactId > joda-time</artifactId>
2024-10-18 17:46:22 -07:00
<version > 2.13.0</version>
2021-10-03 03:17:44 -07:00
</dependency>
<dependency >
<groupId > org.ejml</groupId>
<artifactId > ejml-core</artifactId>
<version > 0.39</version>
</dependency>
<dependency >
<groupId > org.ejml</groupId>
<artifactId > ejml-ddense</artifactId>
<version > 0.39</version>
</dependency>
<dependency >
<groupId > org.ejml</groupId>
<artifactId > ejml-simple</artifactId>
<version > 0.39</version>
</dependency>
<dependency >
<groupId > org.glassfish</groupId>
2024-12-11 12:28:33 -08:00
<artifactId > jakarta.json</artifactId>
2024-10-08 16:59:50 -07:00
<version > 1.1.6</version>
2021-10-03 03:17:44 -07:00
</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>
2024-09-24 13:56:54 -07:00
<version > 3.25.5</version>
2021-10-03 03:17:44 -07:00
</dependency>
<dependency >
<groupId > junit</groupId>
<artifactId > junit</artifactId>
<version > 4.13.1</version>
<scope > test</scope>
</dependency>
<dependency >
<groupId > com.pholser</groupId>
<artifactId > junit-quickcheck-core</artifactId>
<version > 0.5</version>
<scope > test</scope>
</dependency>
<dependency >
<groupId > com.pholser</groupId>
<artifactId > junit-quickcheck-generators</artifactId>
<version > 0.5</version>
<scope > test</scope>
</dependency>
<dependency >
<groupId > javax.activation</groupId>
<artifactId > javax.activation-api</artifactId>
<version > 1.2.0</version>
</dependency>
<dependency >
<groupId > javax.xml.bind</groupId>
<artifactId > jaxb-api</artifactId>
<version > 2.4.0-b180830.0359</version>
</dependency>
<dependency >
2021-10-24 09:16:16 -07:00
<groupId > com.sun.istack</groupId>
<artifactId > istack-commons-runtime</artifactId>
<version > 3.0.7</version>
2021-10-03 03:17:44 -07:00
</dependency>
<dependency >
<groupId > com.sun.xml.bind</groupId>
<artifactId > jaxb-impl</artifactId>
<version > 2.4.0-b180830.0438</version>
</dependency>
</dependencies>
<build >
<sourceDirectory > src</sourceDirectory>
<testSourceDirectory > test/src</testSourceDirectory>
<plugins >
<plugin >
<groupId > org.codehaus.mojo</groupId>
<artifactId > build-helper-maven-plugin</artifactId>
<version > 1.7</version>
<executions >
<execution >
<id > attach-models</id>
<phase > package</phase>
<goals >
<goal > attach-artifact</goal>
</goals>
<configuration >
<artifacts >
<artifact >
2025-06-07 12:56:15 -07:00
<file > ${project.basedir}/stanford-corenlp-4.5.10-models.jar</file>
2021-10-03 03:17:44 -07:00
<type > jar</type>
<classifier > models</classifier>
</artifact>
</artifacts>
</configuration>
</execution>
</executions>
</plugin>
<plugin >
<groupId > org.apache.maven.plugins</groupId>
<artifactId > maven-compiler-plugin</artifactId>
<version > 3.8.1</version>
<configuration >
<release > 17</release>
</configuration>
</plugin>
</plugins>
</build>
</project>