-
Notifications
You must be signed in to change notification settings - Fork 0
CORE-69: gradle to 9.4.1, gradle-git-properties to 2.5.7, junit to 5.14.3 #129
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
Changes from all commits
cd9794b
5080a40
cd5e5fe
91790c2
f01cd72
c03b623
64d6557
4bfcec1
51768df
099d4c1
6129080
8426d00
c6c2609
e8d9442
72bb42b
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -6,7 +6,7 @@ application { | |
| mainClass = 'bio.terra.pfb.JavaPfbCommand' | ||
| } | ||
|
|
||
| version gradle.releaseVersion | ||
| version = gradle.releaseVersion | ||
|
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. addresses a syntax deprecation warning in the newer gradle. |
||
| apply from: "generators.gradle" | ||
|
|
||
| repositories { | ||
|
|
||
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -4,17 +4,17 @@ plugins { | |
| id 'bio.terra.pfb.java-library-conventions' | ||
| id 'com.github.davidmc24.gradle.plugin.avro' version '1.9.1' | ||
| id 'me.champeau.jmh' version '0.7.3' | ||
| id 'com.google.cloud.artifactregistry.gradle-plugin' version '2.1.5' | ||
| id 'com.google.cloud.artifactregistry.gradle-plugin' version '2.2.5' | ||
| } | ||
|
|
||
| repositories { | ||
| maven { | ||
| // Terra proxy for maven central | ||
| url 'https://us-central1-maven.pkg.dev/dsp-artifact-registry/maven-central/' | ||
| url = 'https://us-central1-maven.pkg.dev/dsp-artifact-registry/maven-central/' | ||
| } | ||
| mavenCentral() | ||
| maven { | ||
| url 'https://us-central1-maven.pkg.dev/dsp-artifact-registry/libs-release/' | ||
| url = 'https://us-central1-maven.pkg.dev/dsp-artifact-registry/libs-release/' | ||
|
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. addresses a syntax deprecation warning in the newer gradle. |
||
| } | ||
| } | ||
|
|
||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
gradle 9 was failing to find all the junit libraries; updated the dependency tree appropriately.