summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Timoney <dtimoney@att.com>2018-02-26 10:58:32 -0500
committerDan Timoney <dtimoney@att.com>2018-02-26 10:58:32 -0500
commit3cc57351f6b8e438ac6d6ed98cb098a22c62608f (patch)
tree5a3e762ebb2ab4b715b3df332f890e4dc3ae1be5
parentd873c2251b596c5dc15c0899b22ea0b7fdd6a286 (diff)
Fixed antlr dependencies
Should depend on antlr4-runtime instead of antlr4 to avoid unnecessary compile-time-only dependencies Change-Id: I720628786676dfc81b4aadd4f3da752af2d92451 Issue-ID: CCSDK-175 Signed-off-by: Dan Timoney <dtimoney@att.com>
-rwxr-xr-xsli/common/pom.xml4
-rwxr-xr-xsli/installer/pom.xml8
-rwxr-xr-xsliPluginUtils/provider/pom.xml2
3 files changed, 3 insertions, 11 deletions
diff --git a/sli/common/pom.xml b/sli/common/pom.xml
index 167a776e..1ab787e5 100755
--- a/sli/common/pom.xml
+++ b/sli/common/pom.xml
@@ -37,10 +37,8 @@
</dependency>
<dependency>
<groupId>org.antlr</groupId>
- <artifactId>antlr4</artifactId>
+ <artifactId>antlr4-runtime</artifactId>
<version>${antlr.version}</version>
- <type>jar</type>
- <scope>compile</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
diff --git a/sli/installer/pom.xml b/sli/installer/pom.xml
index e84ae6d0..5586f7d5 100755
--- a/sli/installer/pom.xml
+++ b/sli/installer/pom.xml
@@ -56,11 +56,7 @@
<artifactId>sli-recording</artifactId>
<version>${project.version}</version>
</dependency>
- <dependency>
- <groupId>org.antlr</groupId>
- <artifactId>antlr4</artifactId>
- <version>${antlr.version}</version>
- </dependency>
+
</dependencies>
<build>
@@ -119,7 +115,7 @@
<useRepositoryLayout>true</useRepositoryLayout>
<addParentPoms>false</addParentPoms>
<copyPom>false</copyPom>
- <includeGroupIds>org.onap.ccsdk.sli.core,org.antlr</includeGroupIds>
+ <includeGroupIds>org.onap.ccsdk.sli.core</includeGroupIds>
<excludeArtifactIds>utils-provider,dblib-provider</excludeArtifactIds>
<scope>provided</scope>
</configuration>
diff --git a/sliPluginUtils/provider/pom.xml b/sliPluginUtils/provider/pom.xml
index c09029fa..cd370491 100755
--- a/sliPluginUtils/provider/pom.xml
+++ b/sliPluginUtils/provider/pom.xml
@@ -52,13 +52,11 @@
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-library</artifactId>
- <version>1.3</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
- <version>2.7</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>