[deps](FE)Upgrade the velocity version that hive-exec depends on to 2.3 (#15067)
This commit is contained in:
2
dist/LICENSE-dist.txt
vendored
2
dist/LICENSE-dist.txt
vendored
@ -883,6 +883,8 @@ The Apache Software License, Version 2.0
|
||||
- org.hibernate:hibernate-validator:5.1.0.Final (http://validator.hibernate.org/hibernate-validator)
|
||||
* HikariCP:
|
||||
- com.zaxxer:HikariCP:3.4.5 (https://github.com/brettwooldridge/HikariCP)
|
||||
* velocity:
|
||||
- org.apache.velocity:velocity-engine-core:2.3 (https://velocity.apache.org/engine/2.3/)
|
||||
* Hive Common:
|
||||
- org.apache.hive:hive-common:2.3.7 (https://hive.apache.org/hive-common)
|
||||
* Hive Llap Client:
|
||||
|
||||
@ -613,7 +613,18 @@ under the License.
|
||||
<artifactId>hive-exec</artifactId>
|
||||
<classifier>core</classifier>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<exclusions>
|
||||
<exclusion>
|
||||
<groupId>org.apache.velocity</groupId>
|
||||
<artifactId>velocity</artifactId>
|
||||
</exclusion>
|
||||
</exclusions>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.velocity</groupId>
|
||||
<artifactId>velocity-engine-core</artifactId>
|
||||
<version>2.3</version>
|
||||
</dependency>
|
||||
<!-- https://mvnrepository.com/artifact/org.apache.hadoop/hadoop-hdfs -->
|
||||
<dependency>
|
||||
<groupId>org.apache.hadoop</groupId>
|
||||
|
||||
@ -43,9 +43,18 @@ under the License.
|
||||
<exclusion>
|
||||
<groupId>org.pentaho</groupId>
|
||||
<artifactId>*</artifactId>
|
||||
</exclusion>
|
||||
</exclusion>
|
||||
<exclusion>
|
||||
<groupId>org.apache.velocity</groupId>
|
||||
<artifactId>velocity</artifactId>
|
||||
</exclusion>
|
||||
</exclusions>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.velocity</groupId>
|
||||
<artifactId>velocity-engine-core</artifactId>
|
||||
<version>2.3</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>${project.groupId}</groupId>
|
||||
<artifactId>fe-common</artifactId>
|
||||
|
||||
@ -54,8 +54,17 @@ under the License.
|
||||
<groupId>org.pentaho</groupId>
|
||||
<artifactId>*</artifactId>
|
||||
</exclusion>
|
||||
<exclusion>
|
||||
<groupId>org.apache.velocity</groupId>
|
||||
<artifactId>velocity</artifactId>
|
||||
</exclusion>
|
||||
</exclusions>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.velocity</groupId>
|
||||
<artifactId>velocity-engine-core</artifactId>
|
||||
<version>2.3</version>
|
||||
</dependency>
|
||||
<!-- https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-engine -->
|
||||
<dependency>
|
||||
<groupId>org.junit.jupiter</groupId>
|
||||
|
||||
Reference in New Issue
Block a user