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-09-01 17:47:14 +0200
commit01a006ea8329b165cf2b0ff7f49ca245532d087e (patch)
treebb624a580363a2def73480609a8217f27c033615 /application
parent0d408cd082052f9629f52f8c058ea74323f21667 (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>