Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 18 additions & 1 deletion presto-benchto-benchmarks/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,14 @@
<groupId>com.teradata.benchto</groupId>
<artifactId>benchto-driver</artifactId>
<version>0.4</version>
<!-- Excluding the spring-core vulnerable dependency from this
latest version of benchto driver -->
<exclusions>
<exclusion>
Comment thread
anilsomisetty marked this conversation as resolved.
Outdated
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
</exclusion>
</exclusions>
</dependency>

<dependency>
Expand Down Expand Up @@ -82,6 +90,15 @@
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>

<!-- Adding the latest spring-core version compatible with java 8 because
vulnerable version is excluded above in benchto driver-->
<dependency>
<groupId>org.springframework</groupId>
Comment thread
anilsomisetty marked this conversation as resolved.
Outdated
<artifactId>spring-core</artifactId>
<version>5.3.31</version>
</dependency>

</dependencies>

<build>
Expand All @@ -106,7 +123,7 @@
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>1.2.5.RELEASE</version>
<version>2.7.18</version>
<configuration>
<classifier>executable</classifier>
<mainClass>com.teradata.benchto.driver.DriverApp</mainClass>
Expand Down