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
1 change: 0 additions & 1 deletion eventbus-test-jar/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ java {
dependencies {
implementation rootProject
implementation libs.bundles.asm
implementation libs.unsafe

implementation libs.jmh.core
}
Expand Down
1 change: 0 additions & 1 deletion eventbus-test-jar/src/main/java/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@

requires org.objectweb.asm;
requires org.objectweb.asm.commons;
requires net.minecraftforge.unsafe;
requires static jmh.core;
requires org.jspecify;

Expand Down
1 change: 0 additions & 1 deletion eventbus-test/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ dependencies {
testImplementation libs.junit.api
testImplementation libs.jspecify.annotations
testImplementation libs.compile.testing
testImplementation libs.auto.value
testImplementation libs.jetbrains.annotations
testRuntimeOnly libs.bundles.junit.runtime
}
Expand Down
13 changes: 5 additions & 8 deletions settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,19 +22,17 @@ dependencyResolutionManagement {
library 'jspecify-annotations', 'org.jspecify', 'jspecify' version '1.0.0'

// https://mvnrepository.com/artifact/com.google.errorprone/error_prone_core
library 'errorprone-core', 'com.google.errorprone', 'error_prone_core' version '2.44.0'
library 'errorprone-core', 'com.google.errorprone', 'error_prone_core' version '2.45.0'

// https://mvnrepository.com/artifact/com.uber.nullaway/nullaway
library 'nullaway', 'com.uber.nullaway', 'nullaway' version '0.12.12'
library 'nullaway', 'com.uber.nullaway', 'nullaway' version '0.12.14'


/* The rest is for testing */
library 'unsafe', 'net.minecraftforge:unsafe:0.9.2'

version 'junit', '5.10.1'
version 'junit', '6.0.1'
library 'junit-api', 'org.junit.jupiter', 'junit-jupiter-api' versionRef 'junit'
library 'junit-engine', 'org.junit.jupiter', 'junit-jupiter-engine' versionRef 'junit'
library 'junit-platform-launcher', 'org.junit.platform', 'junit-platform-launcher' version '1.10.1'
library 'junit-platform-launcher', 'org.junit.platform', 'junit-platform-launcher' versionRef 'junit'
bundle 'junit-runtime', ['junit-engine', 'junit-platform-launcher']

version 'asm', '9.9'
Expand All @@ -47,8 +45,7 @@ dependencyResolutionManagement {
library 'jmh-core', 'org.openjdk.jmh', 'jmh-core' versionRef 'jmh'
library 'jmh-annotationProcessor', 'org.openjdk.jmh', 'jmh-generator-annprocess' versionRef 'jmh'

library 'compile-testing', 'com.google.testing.compile', 'compile-testing' version '0.21.0'
library 'auto-value', 'com.google.auto.value', 'auto-value' version '1.11.0' // Need to bump this because compile-testing uses an old non-module compatible version
library 'compile-testing', 'com.google.testing.compile', 'compile-testing' version '0.23.0'
library 'jetbrains-annotations', 'org.jetbrains', 'annotations' version '26.0.2'
}
//@formatter:on
Expand Down