summaryrefslogtreecommitdiffstats
path: root/application
diff options
context:
space:
mode:
authorgjoranv <gv@oath.com>2017-08-30 14:38:07 +0200
committergjoranv <gv@oath.com>2017-08-30 15:00:41 +0200
commitb3a4db45c7fae896a2d5e9ae3fbf2b7fd072f7c9 (patch)
tree6cc39360cd75da5cb53541e8ebe8d5b20483f784 /application
parentd14409fdedb8e7db5e89e7a631af79587e0619db (diff)
Make antlr and antlr4 invisible for customer projects.
- Visible only in test classpath.
Diffstat (limited to 'application')
-rw-r--r--application/pom.xml12
1 files changed, 12 insertions, 0 deletions
diff --git a/application/pom.xml b/application/pom.xml
index 3fd9e8054e7..2d9096e49f1 100644
--- a/application/pom.xml
+++ b/application/pom.xml
@@ -75,6 +75,18 @@
<version>${project.version}</version>
<scope>test</scope>
</dependency>
+
+ <!-- All dependencies that should be visible in test classpath, but not compile classpath,
+ for user projects must be added in compile scope here.
+ These dependencies are explicitly excluded (or set to non-compile scope) in the container-dev module. -->
+ <dependency>
+ <groupId>org.antlr</groupId>
+ <artifactId>antlr-runtime</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.antlr</groupId>
+ <artifactId>antlr4-runtime</artifactId>
+ </dependency>
</dependencies>
<build>