Skip to content

Commit 8805173

Browse files
committed
forgotten files
1 parent 134d8fa commit 8805173

File tree

4 files changed

+45
-0
lines changed

4 files changed

+45
-0
lines changed

buildSrc/build.gradle.kts

Whitespace-only changes.

buildSrc/settings.gradle.kts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
dependencyResolutionManagement {
2+
versionCatalogs {
3+
create("libs") {
4+
from(files("../gradle/libs.versions.toml"))
5+
}
6+
}
7+
}

buildSrc/src/main/kotlin/java-convention.gradle.kts

Whitespace-only changes.

gradle/libs.versions.toml

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
[versions]
2+
jspecify = "1.0.0"
3+
eisop = "3.42.0-eisop5"
4+
5+
[libraries]
6+
jspecify = { module = "org.jspecify:jspecify", version.ref = "jspecify" }
7+
slf4j = { module = "org.slf4j:slf4j-api", version = "2.0.16" }
8+
9+
eisopCheckerQual = { module = "io.github.eisop:checker-qual", version.ref = "eisop" }
10+
eisopUtil = { module = "io.github.eisop:checker-util", version.ref = "eisop" }
11+
eisopChecker = { module = "io.github.eisop:checker", version.ref = "eisop" }
12+
13+
assertj = { module = "org.assertj:assertj-core", version = "3.27.3" }
14+
logback = { module = "ch.qos.logback:logback-classic", version = "1.5.15" }
15+
junitApi = { module = "org.junit.jupiter:junit-jupiter-api", version = "5.11.4" }
16+
junitParams = { module = "org.junit.jupiter:junit-jupiter-params", version = "5.11.4" }
17+
18+
yaml = { module = "com.fasterxml.jackson.dataformat:jackson-dataformat-yaml", version = "2.18.2" }
19+
yamljsr = { module = "com.fasterxml.jackson.datatype:jackson-datatype-jsr310", version = "2.18.2" }
20+
21+
junitEngine = { module = "org.junit.jupiter:junit-jupiter-engine", version = "5.11.4" }
22+
23+
javacc = { module = "net.java.dev.javacc:javacc", version = "4.0" }
24+
antlr = { module = "org.antlr:antlr4", version = "4.13.2" }
25+
antlrRuntime = { module = "org.antlr:antlr4-runtime", version = "4.13.2" }
26+
miglayout = { module = "com.miglayout:miglayout-swing", version = "11.4.2" }
27+
28+
dockingFramesCommon = { module = "org.key-project:docking-frames-common", version = "1.1.3p1" }
29+
dockingFramesCore = { module = "org.key-project:docking-frames-core", version = "1.1.3p1" }
30+
31+
stringtemplate = { module = "org.antlr:ST4", version = "4.3.4" }
32+
33+
34+
[bundles]
35+
junit = ["junitApi", "junitParams", "junitEngine"]
36+
testing = ["junitApi", "junitParams", "junitEngine", "assertj", "logback", "yaml", "yamljsr"]
37+
38+
[plugins]

0 commit comments

Comments
 (0)