Skip to content

Commit

Permalink
[deps](FE)Upgrade the velocity version that hive-exec depends on to 2…
Browse files Browse the repository at this point in the history
….3 (apache#15067)
  • Loading branch information
hf200012 authored Dec 19, 2022
1 parent b62a94a commit e8bac70
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 2 deletions.
2 changes: 2 additions & 0 deletions dist/LICENSE-dist.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
13 changes: 12 additions & 1 deletion fe/fe-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
11 changes: 10 additions & 1 deletion fe/hive-udf/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
9 changes: 9 additions & 0 deletions fe/java-udf/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down

0 comments on commit e8bac70

Please sign in to comment.