File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -26,15 +26,17 @@ minimallyCorrectDefaults {
2626}
2727
2828dependencies {
29- val lombok = " org.projectlombok:lombok:1.18.18"
30-
3129 testImplementation(" junit:junit:4.13.2" )
32- implementation(" org.ow2.asm:asm:9.1" )
33- implementation(" org.ow2.asm:asm-util:9.1" )
34- implementation(" org.ow2.asm:asm-tree:9.1" )
3530 implementation(" com.github.javaparser:javaparser-core:3.6.24" )
3631 api(" com.google.code.findbugs:jsr305:3.0.2" )
3732 api(" org.jetbrains:annotations:20.1.0" )
33+
34+ val asmVer = " 9.1"
35+ implementation(" org.ow2.asm:asm:$asmVer " )
36+ implementation(" org.ow2.asm:asm-util:$asmVer " )
37+ implementation(" org.ow2.asm:asm-tree:$asmVer " )
38+
39+ val lombok = " org.projectlombok:lombok:1.18.18"
3840 implementation(lombok)
3941 annotationProcessor(lombok)
4042 testAnnotationProcessor(lombok)
Original file line number Diff line number Diff line change 11rootProject.name = " JavaTransformer"
2-
3- pluginManagement {
4- repositories {
5- exclusiveContent {
6- forRepository {
7- maven(url = " https://maven.minco.dev/" )
8- }
9- filter {
10- includeGroupByRegex(" dev\\ .minco.*" )
11- includeGroupByRegex(" me\\ .nallar.*" )
12- includeGroupByRegex(" org\\ .minimallycorrect.*" )
13- }
14- }
15- mavenCentral()
16- gradlePluginPortal()
17- }
18- }
You can’t perform that action at this time.
0 commit comments