forked from square/dagger
-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Also align Java project extension JVM target with Kotlin's in the JVM convention plugin and move explicit API config to the runtime project only. RELNOTES=N/A PiperOrigin-RevId: 715355555
- Loading branch information
1 parent
f115081
commit 9abeba7
Showing
5 changed files
with
53 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
import dagger.gradle.build.daggerSources | ||
|
||
plugins { | ||
alias(libs.plugins.dagger.kotlinJvm) | ||
alias(libs.plugins.dagger.publish) | ||
} | ||
|
||
daggerSources { | ||
main.setPackages( | ||
listOf( | ||
"dagger/internal/codegen/extension", | ||
"dagger/model", | ||
"dagger/spi", | ||
"dagger/spi/model", | ||
) | ||
) | ||
} | ||
|
||
// TODO(danysantiago): Shadow / jarjar: 1. xprocessing, 2. auto-common and 3. kotlin-metadata-jvm | ||
dependencies { | ||
implementation(project(":dagger")) | ||
|
||
implementation(libs.auto.common) | ||
implementation(libs.auto.value.annotations) | ||
annotationProcessor(libs.auto.value.compiler) | ||
implementation(libs.findBugs) | ||
implementation(libs.javaPoet) | ||
implementation(libs.javax.inject) | ||
implementation(libs.guava.failureAccess) | ||
implementation(libs.guava.jre) | ||
implementation(libs.ksp.api) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters