Skip to content

Commit 7f6bb16

Browse files
committed
添加查看maven依赖的日志输出
1 parent b137e28 commit 7f6bb16

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

build.gradle

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,3 +37,11 @@ task clean(type: Delete) {
3737
delete rootProject.buildDir
3838
}
3939

40+
gradle.projectsEvaluated {
41+
allprojects {
42+
repositories.all { repo ->
43+
println "REPO: ${repo.name} (${repo.hasProperty('url') ? repo.url : 'no url'})"
44+
}
45+
}
46+
}
47+

0 commit comments

Comments
 (0)