-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Try resolving an error that occurs when syncing the project in Intell…
…iJ IDEA without success, by removing the module-wide opt-in and bumping the Gradle wrapper The Gradle error message when syncing in IntelliJ IDEA: ```text Execution failed for task ':kotlin-common-gradle-plugins:configurePrecompiledScriptDependenciesResolver'. > The value for property 'freeCompilerArgs' is final and cannot be changed any further. ``` This error doesn't occur when I run `publishToMavenLocal` or `check` from the command line. The commands work in the command line. See gradle/gradle#22091 which could be related.
- Loading branch information
Showing
4 changed files
with
6 additions
and
7 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
3 changes: 1 addition & 2 deletions
3
kotlin-common-gradle-plugins/src/main/kotlin/com/huanshankeji/Internal.kt
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 |
---|---|---|
@@ -1,6 +1,5 @@ | ||
package com.huanshankeji | ||
|
||
@RequiresOptIn | ||
@RequiresOptIn("This API is internal in this project.", RequiresOptIn.Level.WARNING) // TODO consider removing `WARNING` | ||
@Retention(AnnotationRetention.BINARY) | ||
@Target(AnnotationTarget.PROPERTY) | ||
annotation class InternalApi |