diff options
author | Dan Timoney <dtimoney@att.com> | 2023-08-09 15:49:31 -0400 |
---|---|---|
committer | Dan Timoney <dtimoney@att.com> | 2023-08-09 15:49:31 -0400 |
commit | 05135b625d9f479638a318e55b9a1c15d5eb260b (patch) | |
tree | fab31cc16ae433a4524d917af723f0b56880ea3f /core/features | |
parent | c6bb986827b626b00a35b73614c9897830409490 (diff) |
Remove antlr4 dependencies
Explicitly declare antlr4 as a dependency of ccsdk-sli with scope
provided to prevent antlr4 and its dependencies being added to generated
features.xml file
Issue-ID: CCSDK-3914
Signed-off-by: Dan Timoney <dtimoney@att.com>
Change-Id: Iaa794431a3539e48c16bb7a3675fea3e7e37752f
Diffstat (limited to 'core/features')
-rw-r--r-- | core/features/ccsdk-sli/pom.xml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/core/features/ccsdk-sli/pom.xml b/core/features/ccsdk-sli/pom.xml index 0e8e36f44..542d481a3 100644 --- a/core/features/ccsdk-sli/pom.xml +++ b/core/features/ccsdk-sli/pom.xml @@ -37,6 +37,13 @@ </dependency> <dependency> + <groupId>org.antlr</groupId> + <artifactId>antlr4</artifactId> + <version>${antlr4.version}</version> + <scope>provided</scope> + </dependency> + + <dependency> <groupId>org.mariadb.jdbc</groupId> <artifactId>mariadb-java-client</artifactId> </dependency> |