Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit1b7edd1

Browse files
committed
Version bump - remove lucene, add a :: uniq operator to Semgrex
1 parent02296fe commit1b7edd1

File tree

9 files changed

+39
-35
lines changed

9 files changed

+39
-35
lines changed

‎build.gradle‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ sourceCompatibility = 1.8
1111
targetCompatibility=1.8
1212
compileJava.options.encoding='UTF-8'
1313

14-
version='4.5.9'
14+
version='4.5.10'
1515

1616
// Gradle application plugin
1717
mainClassName="edu.stanford.nlp.pipeline.StanfordCoreNLP"

‎doc/corenlp/README.txt‎

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,10 @@ LICENSE
4141
CHANGES
4242
---------------------------------
4343

44+
2025-06-06 4.5.10 Additional Semgrex / SSurgeon features and
45+
remove patterns/lucene because of security
46+
warning
47+
4448
2025-03-23 4.5.9 Additional Semgrex / SSurgeon features and a
4549
security patch recommended for deserialization
4650

‎doc/corenlp/pom-full.xml‎

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<modelVersion>4.0.0</modelVersion>
33
<groupId>edu.stanford.nlp</groupId>
44
<artifactId>stanford-corenlp</artifactId>
5-
<version>4.5.9</version>
5+
<version>4.5.10</version>
66
<packaging>jar</packaging>
77
<name>Stanford CoreNLP</name>
88
<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>
@@ -14,8 +14,8 @@
1414
</license>
1515
</licenses>
1616
<scm>
17-
<url>https://nlp.stanford.edu/software/stanford-corenlp-4.5.9.zip</url>
18-
<connection>https://nlp.stanford.edu/software/stanford-corenlp-4.5.9.zip</connection>
17+
<url>https://nlp.stanford.edu/software/stanford-corenlp-4.5.10.zip</url>
18+
<connection>https://nlp.stanford.edu/software/stanford-corenlp-4.5.10.zip</connection>
1919
</scm>
2020
<developers>
2121
<developer>
@@ -190,7 +190,7 @@
190190
<configuration>
191191
<artifacts>
192192
<artifact>
193-
<file>${project.basedir}/stanford-corenlp-4.5.9-models.jar</file>
193+
<file>${project.basedir}/stanford-corenlp-4.5.10-models.jar</file>
194194
<type>jar</type>
195195
<classifier>models</classifier>
196196
</artifact>

‎doc/corenlp/pom-light.xml‎

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<modelVersion>4.0.0</modelVersion>
33
<groupId>edu.stanford.nlp</groupId>
44
<artifactId>stanford-corenlp</artifactId>
5-
<version>4.5.9</version>
5+
<version>4.5.10</version>
66
<packaging>jar</packaging>
77
<name>Stanford CoreNLP</name>
88
<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>
@@ -14,8 +14,8 @@
1414
</license>
1515
</licenses>
1616
<scm>
17-
<url>https://nlp.stanford.edu/software/stanford-corenlp-4.5.9.zip</url>
18-
<connection>https://nlp.stanford.edu/software/stanford-corenlp-4.5.9.zip</connection>
17+
<url>https://nlp.stanford.edu/software/stanford-corenlp-4.5.10.zip</url>
18+
<connection>https://nlp.stanford.edu/software/stanford-corenlp-4.5.10.zip</connection>
1919
</scm>
2020
<developers>
2121
<developer>
@@ -56,7 +56,7 @@
5656
<configuration>
5757
<artifacts>
5858
<artifact>
59-
<file>${project.basedir}/stanford-corenlp-4.5.9-models.jar</file>
59+
<file>${project.basedir}/stanford-corenlp-4.5.10-models.jar</file>
6060
<type>jar</type>
6161
<classifier>models</classifier>
6262
</artifact>

‎examples/sample-maven-project/pom.xml‎

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -17,66 +17,66 @@
1717
<dependency>
1818
<groupId>edu.stanford.nlp</groupId>
1919
<artifactId>stanford-corenlp</artifactId>
20-
<version>4.5.9</version>
20+
<version>4.5.10</version>
2121
</dependency>
2222
<dependency>
2323
<groupId>edu.stanford.nlp</groupId>
2424
<artifactId>stanford-corenlp</artifactId>
25-
<version>4.5.9</version>
25+
<version>4.5.10</version>
2626
<classifier>javadoc</classifier>
2727
</dependency>
2828
<dependency>
2929
<groupId>edu.stanford.nlp</groupId>
3030
<artifactId>stanford-corenlp</artifactId>
31-
<version>4.5.9</version>
31+
<version>4.5.10</version>
3232
<classifier>sources</classifier>
3333
</dependency>
3434
<dependency>
3535
<groupId>edu.stanford.nlp</groupId>
3636
<artifactId>stanford-corenlp</artifactId>
37-
<version>4.5.9</version>
37+
<version>4.5.10</version>
3838
<classifier>models</classifier>
3939
</dependency>
4040
<dependency>
4141
<groupId>edu.stanford.nlp</groupId>
4242
<artifactId>stanford-corenlp</artifactId>
43-
<version>4.5.9</version>
43+
<version>4.5.10</version>
4444
<classifier>models-arabic</classifier>
4545
</dependency>
4646
<dependency>
4747
<groupId>edu.stanford.nlp</groupId>
4848
<artifactId>stanford-corenlp</artifactId>
49-
<version>4.5.9</version>
49+
<version>4.5.10</version>
5050
<classifier>models-chinese</classifier>
5151
</dependency>
5252
<dependency>
5353
<groupId>edu.stanford.nlp</groupId>
5454
<artifactId>stanford-corenlp</artifactId>
55-
<version>4.5.9</version>
55+
<version>4.5.10</version>
5656
<classifier>models-english</classifier>
5757
</dependency>
5858
<dependency>
5959
<groupId>edu.stanford.nlp</groupId>
6060
<artifactId>stanford-corenlp</artifactId>
61-
<version>4.5.9</version>
61+
<version>4.5.10</version>
6262
<classifier>models-english-kbp</classifier>
6363
</dependency>
6464
<dependency>
6565
<groupId>edu.stanford.nlp</groupId>
6666
<artifactId>stanford-corenlp</artifactId>
67-
<version>4.5.9</version>
67+
<version>4.5.10</version>
6868
<classifier>models-french</classifier>
6969
</dependency>
7070
<dependency>
7171
<groupId>edu.stanford.nlp</groupId>
7272
<artifactId>stanford-corenlp</artifactId>
73-
<version>4.5.9</version>
73+
<version>4.5.10</version>
7474
<classifier>models-german</classifier>
7575
</dependency>
7676
<dependency>
7777
<groupId>edu.stanford.nlp</groupId>
7878
<artifactId>stanford-corenlp</artifactId>
79-
<version>4.5.9</version>
79+
<version>4.5.10</version>
8080
<classifier>models-spanish</classifier>
8181
</dependency>
8282
</dependencies>

‎pom-java-11.xml‎

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<modelVersion>4.0.0</modelVersion>
33
<groupId>edu.stanford.nlp</groupId>
44
<artifactId>stanford-corenlp</artifactId>
5-
<version>4.5.9</version>
5+
<version>4.5.10</version>
66
<packaging>jar</packaging>
77
<name>Stanford CoreNLP</name>
88
<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>
@@ -14,8 +14,8 @@
1414
</license>
1515
</licenses>
1616
<scm>
17-
<url>https://nlp.stanford.edu/software/stanford-corenlp-4.5.9.zip</url>
18-
<connection>https://nlp.stanford.edu/software/stanford-corenlp-4.5.9.zip</connection>
17+
<url>https://nlp.stanford.edu/software/stanford-corenlp-4.5.10.zip</url>
18+
<connection>https://nlp.stanford.edu/software/stanford-corenlp-4.5.10.zip</connection>
1919
</scm>
2020
<developers>
2121
<developer>
@@ -188,7 +188,7 @@
188188
<configuration>
189189
<artifacts>
190190
<artifact>
191-
<file>${project.basedir}/stanford-corenlp-4.5.9-models.jar</file>
191+
<file>${project.basedir}/stanford-corenlp-4.5.10-models.jar</file>
192192
<type>jar</type>
193193
<classifier>models</classifier>
194194
</artifact>

‎pom-java-17.xml‎

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<modelVersion>4.0.0</modelVersion>
33
<groupId>edu.stanford.nlp</groupId>
44
<artifactId>stanford-corenlp</artifactId>
5-
<version>4.5.9</version>
5+
<version>4.5.10</version>
66
<packaging>jar</packaging>
77
<name>Stanford CoreNLP</name>
88
<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>
@@ -14,8 +14,8 @@
1414
</license>
1515
</licenses>
1616
<scm>
17-
<url>https://nlp.stanford.edu/software/stanford-corenlp-4.5.9.zip</url>
18-
<connection>https://nlp.stanford.edu/software/stanford-corenlp-4.5.9.zip</connection>
17+
<url>https://nlp.stanford.edu/software/stanford-corenlp-4.5.10.zip</url>
18+
<connection>https://nlp.stanford.edu/software/stanford-corenlp-4.5.10.zip</connection>
1919
</scm>
2020
<developers>
2121
<developer>
@@ -188,7 +188,7 @@
188188
<configuration>
189189
<artifacts>
190190
<artifact>
191-
<file>${project.basedir}/stanford-corenlp-4.5.9-models.jar</file>
191+
<file>${project.basedir}/stanford-corenlp-4.5.10-models.jar</file>
192192
<type>jar</type>
193193
<classifier>models</classifier>
194194
</artifact>

‎pom.xml‎

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<modelVersion>4.0.0</modelVersion>
33
<groupId>edu.stanford.nlp</groupId>
44
<artifactId>stanford-corenlp</artifactId>
5-
<version>4.5.9</version>
5+
<version>4.5.10</version>
66
<packaging>jar</packaging>
77
<name>Stanford CoreNLP</name>
88
<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>
@@ -14,8 +14,8 @@
1414
</license>
1515
</licenses>
1616
<scm>
17-
<url>https://nlp.stanford.edu/software/stanford-corenlp-4.5.9.zip</url>
18-
<connection>https://nlp.stanford.edu/software/stanford-corenlp-4.5.9.zip</connection>
17+
<url>https://nlp.stanford.edu/software/stanford-corenlp-4.5.10.zip</url>
18+
<connection>https://nlp.stanford.edu/software/stanford-corenlp-4.5.10.zip</connection>
1919
</scm>
2020
<developers>
2121
<developer>
@@ -190,7 +190,7 @@
190190
<configuration>
191191
<artifacts>
192192
<artifact>
193-
<file>${project.basedir}/stanford-corenlp-4.5.9-models.jar</file>
193+
<file>${project.basedir}/stanford-corenlp-4.5.10-models.jar</file>
194194
<type>jar</type>
195195
<classifier>models</classifier>
196196
</artifact>

‎src/edu/stanford/nlp/pipeline/demo/corenlp-brat.html‎

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
<scripttype="text/javascript"src="https://cdnjs.cloudflare.com/ajax/libs/dagre-d3/0.4.17/dagre-d3.min.js"></script>
1717

1818
<!-- CoreNLP -->
19-
<linkrel="stylesheet"type="text/css"href="corenlp-brat.css?v4.5.9"/>
20-
<scripttype="text/javascript"src="corenlp-brat.js?v4.5.9"></script>
19+
<linkrel="stylesheet"type="text/css"href="corenlp-brat.css?v4.5.10"/>
20+
<scripttype="text/javascript"src="corenlp-brat.js?v4.5.10"></script>
2121

2222
<metacharset="UTF-8">
2323
</head>
@@ -32,7 +32,7 @@
3232
<imgid="logo-image"src="img/corenlp-title.png">
3333
</a>
3434
</div>
35-
<divid="version-num">version 4.5.9<br><br><br></div>
35+
<divid="version-num">version 4.5.10<br><br><br></div>
3636
</div>
3737
</nav>
3838

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp