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 build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
plugins {
id 'jacoco'
id 'com.diffplug.spotless' version '8.4.0'
id 'com.diffplug.spotless' version '8.5.1'
id 'com.vanniktech.maven.publish' version '0.36.0' apply false
id 'io.github.gradle-nexus.publish-plugin' version '2.0.0'
}
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
[versions]
commons-math3 = "3.6.1"
guava = "33.6.0-jre"
junit-jupiter = "6.0.3"
junit-jupiter = "6.1.0"

[libraries]
commons-math3 = { module = "org.apache.commons:commons-math3", version.ref = "commons-math3" }
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-9.5.0-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-9.5.1-bin.zip
networkTimeout=10000
retries=0
retryBackOffMs=500
Expand Down
2 changes: 1 addition & 1 deletion reggie-benchmark/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ dependencies {
// HTTP client for corpus downloads
implementation 'org.apache.httpcomponents.client5:httpclient5:5.6.1'
implementation 'com.google.code.gson:gson:2.14.0'
runtimeOnly 'org.slf4j:slf4j-simple:2.0.17'
runtimeOnly 'org.slf4j:slf4j-simple:2.0.18'
}

java {
Expand Down
8 changes: 4 additions & 4 deletions reggie-codegen/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ dependencies {
api project(':reggie-annotations')

// ASM for bytecode generation
implementation 'org.ow2.asm:asm:9.9.1'
implementation 'org.ow2.asm:asm-commons:9.9.1'
implementation 'org.ow2.asm:asm-util:9.9.1'
implementation 'org.ow2.asm:asm:9.10.1'
implementation 'org.ow2.asm:asm-commons:9.10.1'
implementation 'org.ow2.asm:asm-util:9.10.1'

testImplementation 'org.junit.jupiter:junit-jupiter:6.0.3'
testImplementation 'org.junit.jupiter:junit-jupiter:6.1.0'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'

// Property-based testing with jqwik
Expand Down
2 changes: 1 addition & 1 deletion reggie-integration-tests/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ dependencies {
implementation 'com.google.code.gson:gson:2.14.0'

// JUnit for integration testing
testImplementation 'org.junit.jupiter:junit-jupiter:6.0.3'
testImplementation 'org.junit.jupiter:junit-jupiter:6.1.0'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
}

Expand Down
4 changes: 2 additions & 2 deletions reggie-processor/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ dependencies {
implementation project(':reggie-codegen')

// ASM for ImplClass generation (minimal - main bytecode generation is in reggie-codegen)
implementation 'org.ow2.asm:asm:9.9.1'
implementation 'org.ow2.asm:asm:9.10.1'

// Auto-service for annotation processor registration
implementation 'com.google.auto.service:auto-service-annotations:1.1.1'
annotationProcessor 'com.google.auto.service:auto-service:1.1.1'

testImplementation project(':reggie-runtime')
testImplementation 'org.junit.jupiter:junit-jupiter:6.0.3'
testImplementation 'org.junit.jupiter:junit-jupiter:6.1.0'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'

// Enable annotation processor for test sources
Expand Down
8 changes: 4 additions & 4 deletions reggie-runtime/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ dependencies {
implementation project(':reggie-codegen')

// ASM - real runtime dependency, kept in the published POM
implementation 'org.ow2.asm:asm:9.9.1'
implementation 'org.ow2.asm:asm-commons:9.9.1'
implementation 'org.ow2.asm:asm-util:9.9.1'
implementation 'org.ow2.asm:asm:9.10.1'
implementation 'org.ow2.asm:asm-commons:9.10.1'
implementation 'org.ow2.asm:asm-util:9.10.1'

testImplementation 'org.junit.jupiter:junit-jupiter:6.0.3'
testImplementation 'org.junit.jupiter:junit-jupiter:6.1.0'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
}

Expand Down
Loading