[deps](FE)Upgrade the velocity version that hive-exec depends on to 2.3 (#15067)

This commit is contained in:
jiafeng.zhang
2022-12-19 14:20:11 +08:00
committed by GitHub
parent b62a94ab46
commit e8bac706d3
4 changed files with 33 additions and 2 deletions

View File

@ -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:

View File

@ -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>

View File

@ -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>

View File

@ -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>