Skip to content

Commit 042ee32

Browse files
committed
add java 17 version
1 parent 978fa51 commit 042ee32

File tree

1 file changed

+215
-0
lines changed

1 file changed

+215
-0
lines changed

pom-java-17.xml

Lines changed: 215 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,215 @@
1+
<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">
2+
<modelVersion>4.0.0</modelVersion>
3+
<groupId>edu.stanford.nlp</groupId>
4+
<artifactId>stanford-corenlp</artifactId>
5+
<version>4.2.2</version>
6+
<packaging>jar</packaging>
7+
<name>Stanford CoreNLP</name>
8+
<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>
9+
<url>https://nlp.stanford.edu/software/corenlp.html</url>
10+
<licenses>
11+
<license>
12+
<name>GNU General Public License Version 3</name>
13+
<url>http://www.gnu.org/licenses/gpl-3.0.txt</url>
14+
</license>
15+
</licenses>
16+
<scm>
17+
<url>https://nlp.stanford.edu/software/stanford-corenlp-4.2.2.zip</url>
18+
<connection>https://nlp.stanford.edu/software/stanford-corenlp-4.2.2.zip</connection>
19+
</scm>
20+
<developers>
21+
<developer>
22+
<id>christopher.manning</id>
23+
<name>Christopher Manning</name>
24+
<email>manning@stanford.edu</email>
25+
</developer>
26+
<developer>
27+
<id>jason.bolton</id>
28+
<name>Jason Bolton</name>
29+
<email>jebolton@stanford.edu</email>
30+
</developer>
31+
<developer>
32+
<id>john.bauer</id>
33+
<name>John Bauer</name>
34+
<email>horatio@gmail.com</email>
35+
</developer>
36+
</developers>
37+
<properties>
38+
<encoding>UTF-8</encoding>
39+
</properties>
40+
<dependencies>
41+
42+
<dependency>
43+
<groupId>com.apple</groupId>
44+
<artifactId>AppleJavaExtensions</artifactId>
45+
<version>1.4</version>
46+
</dependency>
47+
48+
<dependency>
49+
<groupId>de.jollyday</groupId>
50+
<artifactId>jollyday</artifactId>
51+
<version>0.4.9</version>
52+
</dependency>
53+
54+
<dependency>
55+
<groupId>org.apache.commons</groupId>
56+
<artifactId>commons-lang3</artifactId>
57+
<version>3.3.1</version>
58+
</dependency>
59+
60+
<dependency>
61+
<groupId>org.apache.lucene</groupId>
62+
<artifactId>lucene-queryparser</artifactId>
63+
<version>7.5.0</version>
64+
</dependency>
65+
66+
<dependency>
67+
<groupId>org.apache.lucene</groupId>
68+
<artifactId>lucene-analyzers-common</artifactId>
69+
<version>7.5.0</version>
70+
</dependency>
71+
72+
<dependency>
73+
<groupId>org.apache.lucene</groupId>
74+
<artifactId>lucene-core</artifactId>
75+
<version>7.5.0</version>
76+
</dependency>
77+
78+
<dependency>
79+
<groupId>javax.servlet</groupId>
80+
<artifactId>javax.servlet-api</artifactId>
81+
<version>3.0.1</version>
82+
</dependency>
83+
84+
<dependency>
85+
<groupId>xom</groupId>
86+
<artifactId>xom</artifactId>
87+
<version>1.3.2</version>
88+
</dependency>
89+
90+
<dependency>
91+
<groupId>joda-time</groupId>
92+
<artifactId>joda-time</artifactId>
93+
<version>2.10.5</version>
94+
</dependency>
95+
96+
<dependency>
97+
<groupId>org.ejml</groupId>
98+
<artifactId>ejml-core</artifactId>
99+
<version>0.39</version>
100+
</dependency>
101+
102+
<dependency>
103+
<groupId>org.ejml</groupId>
104+
<artifactId>ejml-ddense</artifactId>
105+
<version>0.39</version>
106+
</dependency>
107+
108+
<dependency>
109+
<groupId>org.ejml</groupId>
110+
<artifactId>ejml-simple</artifactId>
111+
<version>0.39</version>
112+
</dependency>
113+
114+
<dependency>
115+
<groupId>org.glassfish</groupId>
116+
<artifactId>javax.json</artifactId>
117+
<version>1.0.4</version>
118+
</dependency>
119+
120+
<dependency>
121+
<groupId>org.slf4j</groupId>
122+
<artifactId>slf4j-api</artifactId>
123+
<version>1.7.12</version>
124+
</dependency>
125+
126+
<dependency>
127+
<groupId>com.google.protobuf</groupId>
128+
<artifactId>protobuf-java</artifactId>
129+
<version>3.9.2</version>
130+
</dependency>
131+
132+
<dependency>
133+
<groupId>junit</groupId>
134+
<artifactId>junit</artifactId>
135+
<version>4.13.1</version>
136+
<scope>test</scope>
137+
</dependency>
138+
139+
<dependency>
140+
<groupId>com.pholser</groupId>
141+
<artifactId>junit-quickcheck-core</artifactId>
142+
<version>0.5</version>
143+
<scope>test</scope>
144+
</dependency>
145+
146+
<dependency>
147+
<groupId>com.pholser</groupId>
148+
<artifactId>junit-quickcheck-generators</artifactId>
149+
<version>0.5</version>
150+
<scope>test</scope>
151+
</dependency>
152+
153+
<dependency>
154+
<groupId>javax.activation</groupId>
155+
<artifactId>javax.activation-api</artifactId>
156+
<version>1.2.0</version>
157+
</dependency>
158+
159+
<dependency>
160+
<groupId>javax.xml.bind</groupId>
161+
<artifactId>jaxb-api</artifactId>
162+
<version>2.4.0-b180830.0359</version>
163+
</dependency>
164+
165+
<dependency>
166+
<groupId>com.sun.xml.bind</groupId>
167+
<artifactId>jaxb-core</artifactId>
168+
<version>2.3.0.1</version>
169+
</dependency>
170+
171+
<dependency>
172+
<groupId>com.sun.xml.bind</groupId>
173+
<artifactId>jaxb-impl</artifactId>
174+
<version>2.4.0-b180830.0438</version>
175+
</dependency>
176+
177+
</dependencies>
178+
<build>
179+
<sourceDirectory>src</sourceDirectory>
180+
<testSourceDirectory>test/src</testSourceDirectory>
181+
<plugins>
182+
<plugin>
183+
<groupId>org.codehaus.mojo</groupId>
184+
<artifactId>build-helper-maven-plugin</artifactId>
185+
<version>1.7</version>
186+
<executions>
187+
<execution>
188+
<id>attach-models</id>
189+
<phase>package</phase>
190+
<goals>
191+
<goal>attach-artifact</goal>
192+
</goals>
193+
<configuration>
194+
<artifacts>
195+
<artifact>
196+
<file>${project.basedir}/stanford-corenlp-4.2.2-models.jar</file>
197+
<type>jar</type>
198+
<classifier>models</classifier>
199+
</artifact>
200+
</artifacts>
201+
</configuration>
202+
</execution>
203+
</executions>
204+
</plugin>
205+
<plugin>
206+
<groupId>org.apache.maven.plugins</groupId>
207+
<artifactId>maven-compiler-plugin</artifactId>
208+
<version>3.8.1</version>
209+
<configuration>
210+
<release>17</release>
211+
</configuration>
212+
</plugin>
213+
</plugins>
214+
</build>
215+
</project>

0 commit comments

Comments
 (0)