[annotation-inheritance, type-utils] Implement module for annotation inheritance

This commit is contained in:
2025-06-20 21:25:09 +02:00
parent 694fb85c31
commit 95b2cbc7dd
28 changed files with 1092 additions and 80 deletions

View File

@@ -1,5 +1,6 @@
[versions]
assertj = "3.26.3"
asm = "9.7"
autoservice = "1.1.1"
acl = "1.3.5"
java-main = "8"
@@ -17,6 +18,8 @@ lombok = { id = "io.freefair.lombok", version = "8.13.1" }
[libraries]
acl = { group = "commons-logging", name = "commons-logging", version.ref = "acl" }
assertj = { group = "org.assertj", name = "assertj-core", version.ref = "assertj" }
asm-commons = { group = "org.ow2.asm", name = "asm-commons", version.ref = "asm" }
asm-core = { group = "org.ow2.asm", name = "asm", version.ref = "asm" }
autoservice-annotations = { group = "com.google.auto.service", name = "auto-service-annotations", version.ref = "autoservice" }
autoservice-processor = { group = "com.google.auto.service", name = "auto-service", version.ref = "autoservice" }
jetbrains-annotations = { group = "org.jetbrains", name = "annotations", version.ref = "jetbrains-annotations" }