Files
kotlin-fork/libraries/tools/kotlin-maven-plugin/kotlin-annotation-processing-maven-build.txt
T
Yahor Berdnikau 1eb27f2aac Update publishing and usage of kotlin-annotation-processing plugin
- removed 'kotlin-annotation-processing-gradle' publication as it
duplicated 'kotlin-annotation-processing-embeddable'
- removed 'kotlin-annotation-processing-maven' as it is embedded into
  'kotlin-maven-plugin'. Instead 'kotlin-maven-plugin' now depends on
  'kotlin-annotation-processing' directly.

^KT-52811 In Progress
2023-04-17 14:40:51 +00:00

9 lines
478 B
Plaintext

The presence of this file enables the "tools_jar_profile" profile in kotlin-annotation-processing,
which adds "tools.jar" to the compile dependencies.
When Gradle loads this artifact, the "tools_jar_profile" profile should not be activated
(cause it adds an extra dependency from the path based on the environment variable).
It wouldn't in fact because:
1. This file is normally absent when Gradle build with kapt is launched;
2. Gradle poorly supports Maven profiles.