Skip to content

Commit fd82f77

Browse files
committed
Reorganise deps, remove unnecessary customisation of plugin repositories
1 parent 4973aec commit fd82f77

2 files changed

Lines changed: 7 additions & 22 deletions

File tree

build.gradle.kts

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,15 +26,17 @@ minimallyCorrectDefaults {
2626
}
2727

2828
dependencies {
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)

settings.gradle.kts

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1 @@
11
rootProject.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-
}

0 commit comments

Comments
 (0)