summaryrefslogtreecommitdiffstats
path: root/pom.xml
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 /pom.xml
parentd14409fdedb8e7db5e89e7a631af79587e0619db (diff)
Make antlr and antlr4 invisible for customer projects.
- Visible only in test classpath.
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml11
1 files changed, 9 insertions, 2 deletions
diff --git a/pom.xml b/pom.xml
index dd7042bf911..d345d5eb8d2 100644
--- a/pom.xml
+++ b/pom.xml
@@ -56,7 +56,7 @@
<plugin>
<groupId>org.antlr</groupId>
<artifactId>antlr3-maven-plugin</artifactId>
- <version>3.5.2</version>
+ <version>${antlr.version}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
@@ -574,7 +574,12 @@
<dependency>
<groupId>org.antlr</groupId>
<artifactId>antlr-runtime</artifactId>
- <version>3.5.2</version>
+ <version>${antlr.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.antlr</groupId>
+ <artifactId>antlr4-runtime</artifactId>
+ <version>${antlr4.version}</version>
</dependency>
<dependency>
<groupId>org.apache.aries.spifly</groupId>
@@ -889,6 +894,8 @@
<properties>
<javax.ws.rs-api.version>2.0.1</javax.ws.rs-api.version> <!-- must be kept in sync with version used by current jersey2.version -->
+ <antlr.version>3.5.2</antlr.version>
+ <antlr4.version>4.5</antlr4.version>
<aries.spifly.version>1.0.8</aries.spifly.version>
<aries.util.version>1.0.0</aries.util.version>
<asm-debug-all.version>5.0.3</asm-debug-all.version>