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
Gradle 7.0 is making it an error to have properties in your Tasks without an @Input or @Output annotation, as noted here. This causes ksp-1.4.30-1.0.0-alpha05 to fail to run against Gradle 7.0-RC-1 with the following errors.
Details
Some problems were found with the configuration of task ':api:kspKotlin' (type 'KspTask').
- Type 'KspTask' property 'blockOtherCompilerPlugins' is missing an input or output annotation.
Reason: A property without annotation isn't considered during up-to-date checking.
Possible solutions:
1. Add an input or output annotation.
2. Mark it as @Internal.
Please refer to https://docs.gradle.org/7.0-rc-1/userguide/validation_problems.html#missing_annotation for more details about this problem.
- Type 'KspTask' property 'destination' is missing an input or output annotation.
Reason: A property without annotation isn't considered during up-to-date checking.
Possible solutions:
1. Add an input or output annotation.
2. Mark it as @Internal.
Please refer to https://docs.gradle.org/7.0-rc-1/userguide/validation_problems.html#missing_annotation for more details about this problem.
- Type 'KspTask' property 'kotlinCompile' is missing an input or output annotation.
Reason: A property without annotation isn't considered during up-to-date checking.
Possible solutions:
1. Add an input or output annotation.
2. Mark it as @Internal.
Please refer to https://docs.gradle.org/7.0-rc-1/userguide/validation_problems.html#missing_annotation for more details about this problem.
- Type 'KspTask' property 'options' is missing an input or output annotation.
Reason: A property without annotation isn't considered during up-to-date checking.
Possible solutions:
1. Add an input or output annotation.
2. Mark it as @Internal.
Please refer to https://docs.gradle.org/7.0-rc-1/userguide/validation_problems.html#missing_annotation for more details about this problem.
I was able to find the relevant code but lack knowledge of the codebase and Gradle itself to annotate these properties correctly.
The text was updated successfully, but these errors were encountered:
Gradle 7.0 is making it an error to have properties in your
Task
s without an@Input
or@Output
annotation, as noted here. This causesksp-1.4.30-1.0.0-alpha05
to fail to run against Gradle 7.0-RC-1 with the following errors.Details
I was able to find the relevant code but lack knowledge of the codebase and Gradle itself to annotate these properties correctly.
The text was updated successfully, but these errors were encountered: