Skip to content

Commit

Permalink
update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
iTitus committed Jan 9, 2025
1 parent aa13708 commit f391e22
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ subprojects {
mavenCentral()
if (isSnapshot) {
maven {
name "sonatype snapshots"
url "https://oss.sonatype.org/content/repositories/snapshots"
name = "sonatype snapshots"
url = "https://oss.sonatype.org/content/repositories/snapshots"
}
}
}
Expand Down Expand Up @@ -105,7 +105,7 @@ subprojects {
maven {
final releasesRepoUrl = "https://oss.sonatype.org/service/local/staging/deploy/maven2"
final snapshotsRepoUrl = "https://oss.sonatype.org/content/repositories/snapshots"
url isSnapshot ? snapshotsRepoUrl : releasesRepoUrl
url = isSnapshot ? snapshotsRepoUrl : releasesRepoUrl
if (project.hasProperty('ossrhUsername') && project.hasProperty('ossrhPassword')) {
credentials {
username project.ossrhUsername
Expand Down
2 changes: 1 addition & 1 deletion de.prob2.commandline/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ dependencies {
implementation(project(":de.prob2.kernel"))

implementation(group: "ch.qos.logback", name: "logback-classic", version: "1.3.14") // Eclipse Public License 1.0
implementation(group: "commons-cli", name: "commons-cli", version: "1.8.0") // Apache License 2.0
implementation(group: "commons-cli", name: "commons-cli", version: "1.9.0") // Apache License 2.0
}

application {
Expand Down
2 changes: 1 addition & 1 deletion de.prob2.kernel/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ dependencies {
api(project(":prob-java"))

// Groovy (Apache License 2.0)
api(platform(group: "org.apache.groovy", name: "groovy-bom", version: "4.0.22"))
api(platform(group: "org.apache.groovy", name: "groovy-bom", version: "4.0.24"))
api group: "org.apache.groovy", name: "groovy"
api group: "org.apache.groovy", name: "groovy-jsr223"
}
Expand Down
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.10.2-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
14 changes: 7 additions & 7 deletions prob-java/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {
}

// When making a release, please check that parserVersion matches what the specified version of probcli expects, to avoid unpredictable/inconsistent behavior!
def parserVersion = "2.13.5"
def parserVersion = "2.13.6-SNAPSHOT"
def probcliVersion = "1.13.1-nightly"
def cliDownloadURL
if (probcliVersion.endsWith("-nightly")) {
Expand Down Expand Up @@ -37,23 +37,23 @@ dependencies {
api group: "de.hhu.stups", name: "tlc4b", version: "1.2.0" // MIT License

// Logging
api group: "org.slf4j", name: "slf4j-api", version: "2.0.13" // MIT License
api group: "org.slf4j", name: "slf4j-api", version: "2.0.16" // MIT License

// Misc dependencies
implementation group: "com.github.krukow", name: "clj-ds", version: "0.0.4" // Eclipse Public License 1.0
implementation group: "com.google.guava", name: "guava", version: "33.2.1-jre" // Apache License 2.0
implementation group: "com.google.guava", name: "guava", version: "33.4.0-jre" // Apache License 2.0
api group: "com.google.inject", name: "guice", version: "6.0.0" // Apache License 2.0

api(platform(group: "com.fasterxml.jackson", name: "jackson-bom", version: "2.17.2"))
api(platform(group: "com.fasterxml.jackson", name: "jackson-bom", version: "2.18.2"))
api group: 'com.fasterxml.jackson.core', name: 'jackson-databind'
api group: 'com.fasterxml.jackson.module', name: 'jackson-module-parameter-names'
api group: 'com.fasterxml.jackson.datatype', name: 'jackson-datatype-jsr310'
api group: 'com.fasterxml.jackson.datatype', name: 'jackson-datatype-jdk8'
implementation group: 'org.apache.velocity', name: 'velocity-engine-core', version: '2.3'
implementation group: 'org.apache.velocity', name: 'velocity-engine-core', version: '2.4.1'

// Test dependencies
testImplementation group: "ch.qos.logback", name: "logback-classic", version: "1.3.14" // Eclipse Public License 1.0
testImplementation(platform('org.junit:junit-bom:5.10.3'))
testImplementation group: "ch.qos.logback", name: "logback-classic", version: "1.3.15" // Eclipse Public License 1.0
testImplementation(platform('org.junit:junit-bom:5.11.4'))
testImplementation('org.junit.jupiter:junit-jupiter')
testRuntimeOnly group: "org.junit.platform", name: "junit-platform-launcher"
}
Expand Down

0 comments on commit f391e22

Please sign in to comment.