Skip to content

Commit

Permalink
refactor-2
Browse files Browse the repository at this point in the history
  • Loading branch information
adkharat committed Dec 17, 2024
1 parent fa4820a commit d402063
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 13 deletions.
25 changes: 16 additions & 9 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
<!-- Changing joda version changes tzdata which must match deployed JVM tzdata
Do not change this without also making sure it matches -->
<dep.joda.version>2.12.7</dep.joda.version>
<dep.tempto.version>1.53</dep.tempto.version>
<dep.tempto.version>1.54-SNAPSHOT</dep.tempto.version>
<dep.testng.version>7.5</dep.testng.version>
<dep.lucene.version>8.10.0</dep.lucene.version>
<dep.assertj-core.version>3.8.0</dep.assertj-core.version>
Expand Down Expand Up @@ -207,6 +207,13 @@
<module>presto-native-sidecar-plugin</module>
</modules>

<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>

<dependencyManagement>
<dependencies>
<dependency>
Expand Down Expand Up @@ -1983,9 +1990,9 @@
</dependency>

<dependency>
<groupId>io.prestodb.tempto</groupId>
<groupId>com.github.adkharat.tempto</groupId>
<artifactId>tempto-core</artifactId>
<version>${dep.tempto.version}</version>
<version>upgrade_kafka_client_version_cve_2022_34917-SNAPSHOT</version>
<exclusions>
<exclusion>
<groupId>com.datastax.cassandra</groupId>
Expand All @@ -1999,9 +2006,9 @@
</dependency>

<dependency>
<groupId>io.prestodb.tempto</groupId>
<groupId>com.github.adkharat.tempto</groupId>
<artifactId>tempto-ldap</artifactId>
<version>${dep.tempto.version}</version>
<version>upgrade_kafka_client_version_cve_2022_34917-SNAPSHOT</version>
<exclusions>
<exclusion>
<groupId>com.datastax.cassandra</groupId>
Expand All @@ -2011,9 +2018,9 @@
</dependency>

<dependency>
<groupId>io.prestodb.tempto</groupId>
<groupId>com.github.adkharat.tempto</groupId>
<artifactId>tempto-kafka</artifactId>
<version>${dep.tempto.version}</version>
<version>upgrade_kafka_client_version_cve_2022_34917-SNAPSHOT</version>
<exclusions>
<exclusion>
<groupId>com.datastax.cassandra</groupId>
Expand All @@ -2031,9 +2038,9 @@
</dependency>

<dependency>
<groupId>io.prestodb.tempto</groupId>
<groupId>com.github.adkharat.tempto</groupId>
<artifactId>tempto-runner</artifactId>
<version>${dep.tempto.version}</version>
<version>upgrade_kafka_client_version_cve_2022_34917-SNAPSHOT</version>
<exclusions>
<exclusion>
<groupId>com.datastax.cassandra</groupId>
Expand Down
15 changes: 11 additions & 4 deletions presto-product-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,13 @@
<scala.version>2.12.2</scala.version>
</properties>

<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>

<dependencyManagement>
<dependencies>
<dependency>
Expand Down Expand Up @@ -55,15 +62,15 @@
</exclusions>
</dependency>
<dependency>
<groupId>io.prestodb.tempto</groupId>
<groupId>com.github.adkharat.tempto</groupId>
<artifactId>tempto-core</artifactId>
</dependency>
<dependency>
<groupId>io.prestodb.tempto</groupId>
<groupId>com.github.adkharat.tempto</groupId>
<artifactId>tempto-ldap</artifactId>
</dependency>
<dependency>
<groupId>io.prestodb.tempto</groupId>
<groupId>com.github.adkharat.tempto</groupId>
<artifactId>tempto-kafka</artifactId>
<exclusions>
<exclusion>
Expand All @@ -73,7 +80,7 @@
</exclusions>
</dependency>
<dependency>
<groupId>io.prestodb.tempto</groupId>
<groupId>com.github.adkharat.tempto</groupId>
<artifactId>tempto-runner</artifactId>
</dependency>
<dependency>
Expand Down

0 comments on commit d402063

Please sign in to comment.