Skip to content

Commit 1ccd33c

Browse files
committed
Add dependency verification data
1 parent 3625279 commit 1ccd33c

File tree

3 files changed

+1940
-2
lines changed

3 files changed

+1940
-2
lines changed

build.gradle.kts

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,10 @@ configurations.compileClasspath {
1212
dependencies {
1313
implementation("org.ow2.asm:asm:9.9")
1414
compileOnly("org.gradlex:extra-java-module-info:1.13.1")
15-
compileOnly("com.autonomousapps:dependency-analysis-gradle-plugin:3.4.0")
15+
compileOnly("com.autonomousapps:dependency-analysis-gradle-plugin:3.4.0") {
16+
exclude("dev.zacsweers.moshix", "moshi-sealed-runtime")
17+
exclude("javax.inject", "javax.inject")
18+
}
1619
}
1720

1821
publishingConventions {
@@ -53,7 +56,8 @@ detachedResolver.repositories.ivy {
5356
val modulePropertiesScope = detachedResolver.configurations.dependencyScope("moduleProperties")
5457
val modulePropertiesPath =
5558
detachedResolver.configurations.resolvable("modulePropertiesPath") { extendsFrom(modulePropertiesScope.get()) }
56-
val dep = detachedResolver.dependencies.add(modulePropertiesScope.name, "com.github.sormuras.modules:modules:1")
59+
val dep =
60+
detachedResolver.dependencies.add(modulePropertiesScope.name, "com.github.sormuras.modules:modules:1@properties")
5761

5862
(dep as ExternalModuleDependency).isChanging = true
5963

0 commit comments

Comments
 (0)