aboutsummaryrefslogtreecommitdiff
path: root/pom.xml
diff options
context:
space:
mode:
authorArina Ielchiieva <arina.yelchiyeva@gmail.com>2019-01-08 14:52:39 +0200
committerSorabh Hamirwasia <sorabh@apache.org>2019-01-10 10:32:01 -0800
commit7be4c53b31c543d2d43651664d4d85b265fbfec7 (patch)
tree4320af8c8315056dc70104b263a72337cfe9a661 /pom.xml
parenteb0299982c90757fec869875b879dcdbd68a1b76 (diff)
DRILL-6954: Move commons libs used in UDFs module to the dependency management
closes #1604
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml34
1 files changed, 29 insertions, 5 deletions
diff --git a/pom.xml b/pom.xml
index f0ecf80dc..a2e0948c1 100644
--- a/pom.xml
+++ b/pom.xml
@@ -94,6 +94,9 @@
<docker.repository>drill/apache-drill</docker.repository>
<antlr.version>4.7.1</antlr.version>
<lowestMavenVersion>3.3.3</lowestMavenVersion>
+ <commons.net.version>3.6</commons.net.version>
+ <commons.validator.version>1.6</commons.validator.version>
+ <commons.text.version>1.6</commons.text.version>
</properties>
<scm>
@@ -1702,6 +1705,32 @@
<artifactId>antlr4-runtime</artifactId>
<version>${antlr.version}</version>
</dependency>
+ <dependency>
+ <groupId>sqlline</groupId>
+ <artifactId>sqlline</artifactId>
+ <version>${sqlline.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>commons-net</groupId>
+ <artifactId>commons-net</artifactId>
+ <version>${commons.net.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>commons-validator</groupId>
+ <artifactId>commons-validator</artifactId>
+ <version>${commons.validator.version}</version>
+ <exclusions>
+ <exclusion>
+ <groupId>commons-logging</groupId>
+ <artifactId>commons-logging</artifactId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.commons</groupId>
+ <artifactId>commons-text</artifactId>
+ <version>${commons.text.version}</version>
+ </dependency>
</dependencies>
</dependencyManagement>
@@ -2350,11 +2379,6 @@
<artifactId>xalan</artifactId>
<version>2.7.1</version>
</dependency>
- <dependency>
- <groupId>sqlline</groupId>
- <artifactId>sqlline</artifactId>
- <version>${sqlline.version}</version>
- </dependency>
<dependency>
<groupId>org.apache.calcite</groupId>