Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: Incendo/cloud-build-logic
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: e6845da767d0cbd58eea03bbede45149e195f3e6
Choose a base ref
..
head repository: Incendo/cloud-build-logic
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1bb4a445d6eced3c82fcde67038225cb6db0d1c0
Choose a head ref
Showing with 7 additions and 4 deletions.
  1. +1 −0 build.gradle.kts
  2. +1 −1 gradle.properties
  3. +3 −1 gradle/libs.versions.toml
  4. BIN gradle/wrapper/gradle-wrapper.jar
  5. +1 −1 gradle/wrapper/gradle-wrapper.properties
  6. +1 −1 settings.gradle.kts
1 change: 1 addition & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -10,6 +10,7 @@ plugins {
dependencies {
api(libs.indra.common)
api(libs.indra.publishing.sonatype)
api(libs.nexus.publish) // Upgrade version from indra-publishing-sonatype transitive dep
api(libs.indra.crossdoc)
api(libs.errorprone.gradle)
api(libs.spotless)
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
group=org.incendo
description=Shared build logic for cloud projects
version=0.0.14-SNAPSHOT
version=0.0.15-SNAPSHOT

org.gradle.parallel=true
org.gradle.caching=true
4 changes: 3 additions & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,17 @@
[plugins]
nexus-publish = { id = "io.github.gradle-nexus.publish-plugin", version = "2.0.0-rc-2" }
nexus-publish = { id = "io.github.gradle-nexus.publish-plugin", version.ref = "nexus-publish" }

[versions]
indra = "3.1.3"
gradleErrorprone = "3.1.0"
spotless = "6.25.0"
nexus-publish = "2.0.0"

[libraries]
indra-common = { module = "net.kyori:indra-common", version.ref = "indra" }
indra-crossdoc = { module = "net.kyori:indra-crossdoc", version.ref = "indra" }
indra-publishing-sonatype = { module = "net.kyori:indra-publishing-sonatype", version.ref = "indra" }
nexus-publish = { module = "io.github.gradle-nexus:publish-plugin", version.ref = "nexus-publish" }
errorprone-gradle = { module = "net.ltgt.gradle:gradle-errorprone-plugin", version.ref = "gradleErrorprone" }
spotless = { module = "com.diffplug.spotless:spotless-plugin-gradle", version.ref = "spotless" }
palantir-baseline = { module = "com.palantir.baseline:gradle-baseline-java", version = "5.37.0" }
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.6-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-all.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
2 changes: 1 addition & 1 deletion settings.gradle.kts
Original file line number Diff line number Diff line change
@@ -16,7 +16,7 @@ plugins {

buildscript {
dependencies {
classpath("org.incendo:cloud-build-logic:0.0.13") {
classpath("org.incendo:cloud-build-logic:0.0.14") {
isTransitive = false
}
}