summaryrefslogtreecommitdiffstats
path: root/application
diff options
context:
space:
mode:
authorBjørn Christian Seime <bjorn.christian@seime.no>2017-08-30 15:32:08 +0200
committerGitHub <noreply@github.com>2017-08-30 15:32:08 +0200
commitb5fc2e2005c76684d49da08e31f65988d4237e62 (patch)
tree63d9a69708b71008b4c3fa5b6fe45942e0bb5539 /application
parent27490d89ff1b1127a49e84a5a17b185b942a3c3a (diff)
parentb3a4db45c7fae896a2d5e9ae3fbf2b7fd072f7c9 (diff)
Merge pull request #3271 from vespa-engine/gjoranv/exclude-antlr-from-provided-deps
Make antlr and antlr4 invisible for customer projects.
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>