Skip to content
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
fi

- name: Check tag existence
uses: mukunku/tag-exists-action@v1.5.0
uses: mukunku/tag-exists-action@v1.7.0
id: check-tag-exists
with:
tag: ${{ steps.version-step.outputs.version }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/snapshot.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
fi

- name: Check tag existence
uses: mukunku/tag-exists-action@v1.5.0
uses: mukunku/tag-exists-action@v1.7.0
id: check-tag-exists
with:
tag: ${{ steps.version-step.outputs.version }}
Expand Down
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-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.4-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
12 changes: 7 additions & 5 deletions gradlew

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 4 additions & 2 deletions gradlew.bat

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions model/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -26,17 +26,17 @@ repositories {

dependencies {
// This dependency is exported to consumers, that is to say found on their compile classpath.
api("org.apache.xmlbeans:xmlbeans:5.2.0")
api("org.apache.xmlbeans:xmlbeans:5.3.0")
// This dependency is used internally, and not exposed to consumers on their own compile classpath.
implementation("org.apache.logging.log4j:log4j-core:2.21.1")
implementation("org.apache.logging.log4j:log4j-core:2.25.3")
//
implementation("org.springframework:spring-beans:6.1.11")
implementation("org.springframework:spring-beans:6.2.15")

// Use JUnit Jupiter for testing.
testImplementation("org.junit.jupiter:junit-jupiter:5.9.3")
testRuntimeOnly("org.junit.platform:junit-platform-launcher:1.10.3")
testImplementation("org.junit.jupiter:junit-jupiter:5.14.2")
testRuntimeOnly("org.junit.platform:junit-platform-launcher:1.14.2")
// XMLUnit
testImplementation("org.xmlunit:xmlunit-assertj3:2.10.0")
testImplementation("org.xmlunit:xmlunit-assertj3:2.11.0")
}

sourceSets {
Expand Down
2 changes: 1 addition & 1 deletion settings.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
plugins {
// Apply the foojay-resolver plugin to allow automatic download of JDKs
id("org.gradle.toolchains.foojay-resolver-convention") version "0.7.0"
id("org.gradle.toolchains.foojay-resolver-convention") version "0.10.0"
}

rootProject.name = "DDI-Lifecycle-Java"
Expand Down
Loading