You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In this example, the `commonAnnotationProcessors` Gradle configuration is your common superconfiguration for annotation processing
298
+
that you want to be used for all your projects. You use the [`extendsFrom()`](https://docs.gradle.org/current/dsl/org.gradle.api.artifacts.Configuration.html#org.gradle.api.artifacts.Configuration:extendsFrom)
299
+
method to add `commonAnnotationProcessors` as a superconfiguration. kapt sees that the `commonAnnotationProcessors`
300
+
Gradle configuration has a dependency on the Dagger annotation processor. Therefore, kapt includes the Dagger annotation processor
*[New Gradle property to try latest language version](#new-gradle-property-to-try-latest-language-version)
1217
1217
*[New JSON output format for build reports](#new-json-output-format-for-build-reports)
1218
-
*[kapt configurations inherit annotation processors from super configurations](#kapt-configurations-inherit-annotation-processors-from-super-configurations)
1218
+
*[kapt configurations inherit annotation processors from superconfigurations](#kapt-configurations-inherit-annotation-processors-from-superconfigurations)
1219
1219
*[Kotlin Gradle plugin no longer uses deprecated Gradle conventions](#kotlin-gradle-plugin-no-longer-uses-deprecated-gradle-conventions)
1220
1220
1221
1221
### New Gradle DSL for compiler options in multiplatform projects
@@ -1636,7 +1636,7 @@ metrics:
1636
1636
}
1637
1637
```
1638
1638
1639
-
### kapt configurations inherit annotation processors from super configurations
1639
+
### kapt configurations inherit annotation processors from superconfigurations
1640
1640
1641
1641
Prior to Kotlin 2.0.0, if you wanted to define a common set of annotation processors in a separate Gradle configuration
1642
1642
and extend this configuration in kapt-specific configurations for your subprojects, kapt would skip annotation
@@ -1658,7 +1658,7 @@ dependencies {
1658
1658
1659
1659
In this example, the `commonAnnotationProcessors` Gradle configuration is your "common" configuration for annotation
1660
1660
processing that you want to be used for all your projects. You use the [`extendsFrom()`](https://docs.gradle.org/current/dsl/org.gradle.api.artifacts.Configuration.html#org.gradle.api.artifacts.Configuration:extendsFrom)
1661
-
method to add "commonAnnotationProcessors" as a super configuration. kapt sees that the `commonAnnotationProcessors`
1661
+
method to add "commonAnnotationProcessors" as a superconfiguration. kapt sees that the `commonAnnotationProcessors`
1662
1662
Gradle configuration has a dependency on the Dagger annotation processor and successfully includes it in its
0 commit comments