Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[test] JDK 22 upgrade #277

Draft
wants to merge 6 commits into
base: master
Choose a base branch
from
Draft
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Manually add first class dependencies that otherwise break the source…
… build
aaneja committed Oct 14, 2024
commit a3f4ec076bbcde52dd2b5c410cad1927de167df6
10 changes: 10 additions & 0 deletions tempto-examples/build.gradle
Original file line number Diff line number Diff line change
@@ -21,10 +21,16 @@ apply plugin: 'com.github.johnrengelman.shadow'
apply plugin: 'java'

dependencies {
implementation tempto_core
implementation tempto_runner
implementation tempto_kafka
implementation libraries.slf4j_api
implementation libraries.junit
implementation libraries.guava
implementation 'javax.xml.bind:jaxb-api:2.2.4'
implementation libraries.testng
implementation libraries.assertj
implementation libraries.guice

runtimeOnly tempto_logging_log4j
runtimeOnly libraries.slf4j_log4j
@@ -33,6 +39,10 @@ dependencies {
runtimeOnly libraries.hive_jdbc
}

license {
exclude "**/*.yaml"
}

jar {
manifest {
attributes 'Main-Class': 'io.prestodb.tempto.examples.TemptoExamples'
1 change: 1 addition & 0 deletions tempto-kafka/build.gradle
Original file line number Diff line number Diff line change
@@ -19,6 +19,7 @@ dependencies {
implementation libraries.kafka
implementation libraries.zkclient
implementation libraries.guava
implementation libraries.guice
}

// project information
4 changes: 4 additions & 0 deletions tempto-ldap/build.gradle
Original file line number Diff line number Diff line change
@@ -16,6 +16,10 @@ apply plugin: 'java'

dependencies {
implementation tempto_core
implementation libraries.guava
implementation libraries.commons_lang3
implementation libraries.guice
implementation libraries.slf4j_api
}

// project information
1 change: 1 addition & 0 deletions tempto-logging-log4j/build.gradle
Original file line number Diff line number Diff line change
@@ -21,6 +21,7 @@ dependencies {
implementation libraries.log4j
implementation libraries.slf4j_api
implementation libraries.reflections
implementation libraries.guice
}

// project information
8 changes: 8 additions & 0 deletions tempto-runner/build.gradle
Original file line number Diff line number Diff line change
@@ -18,6 +18,14 @@ apply plugin: 'groovy'
dependencies {
implementation tempto_core
implementation libraries.commons_cli
implementation libraries.guava
implementation libraries.commons_lang3
implementation libraries.slf4j_api
implementation libraries.testng


runtimeOnly tempto_logging_log4j
runtimeOnly libraries.slf4j_log4j
}

configurations {