You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nlpcraft.apache.org by ar...@apache.org on 2021/12/14 22:14:20 UTC

[incubator-nlpcraft] branch master updated: Remove Stanford CoreNLP.

This is an automated email from the ASF dual-hosted git repository.

aradzinski pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nlpcraft.git


The following commit(s) were added to refs/heads/master by this push:
     new 3d6ccf1  Remove Stanford CoreNLP.
     new c619eab  Merge branch 'master' of https://github.com/apache/incubator-nlpcraft
3d6ccf1 is described below

commit 3d6ccf1dbf5a86e45c8f826b9177282dde4b50cb
Author: Aaron Radzinski <ar...@datalingvo.com>
AuthorDate: Tue Dec 14 14:14:03 2021 -0800

    Remove Stanford CoreNLP.
---
 .github/workflows/build.yml | 4 ++--
 pom.xml                     | 7 -------
 2 files changed, 2 insertions(+), 9 deletions(-)

diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index cda768c..c3aaf69 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -52,9 +52,9 @@ jobs:
 
       - name: Build (Linux)
         if: ${{matrix.os == 'ubuntu-latest'}}
-        run: 'mvn -B clean verify -P stanford-corenlp,examples'
+        run: 'mvn -B clean verify -P examples'
 
       - name: Build (Windows)
         if: ${{matrix.os == 'windows-latest'}}
         # Build only, no tests because of memory limits.
-        run: 'mvn -B clean package -DskipTests=true -P stanford-corenlp,examples'
+        run: 'mvn -B clean package -DskipTests=true -P examples'
diff --git a/pom.xml b/pom.xml
index ec803c0..c8d2945 100644
--- a/pom.xml
+++ b/pom.xml
@@ -109,13 +109,6 @@
 
         <!-- Jar with all dependencies. -->
         <nlpcraft.all.deps.jar>apache-${project.artifactId}-incubating-${project.version}-all-deps.jar</nlpcraft.all.deps.jar>
-
-        <!--
-            NOTE: this library is NOT included in binary build and is optional
-            for NLPCraft. It is licensed under GPLv3 and has to be downloaded separately by
-            the end user, when required.
-        -->
-        <stanford.corenlp.ver>3.9.2</stanford.corenlp.ver>
     </properties>
 
     <dependencyManagement>