[Build] Add the kotlin- prefix to the build tools API modules names
KT-57396
This commit is contained in:
committed by
Space Team
parent
b6fdc2dbfc
commit
ec4fab57a7
@@ -1,3 +1,3 @@
|
||||
## Build Tools
|
||||
|
||||
Please refer to the [Build Tools API readme](./build-tools-api/README.md).
|
||||
Please refer to the [Build Tools API readme](kotlin-build-tools-api/README.md).
|
||||
+1
-1
@@ -4,6 +4,6 @@ This module contains public interfaces for Kotlin build tools.
|
||||
Using APIs from this module should be the preferred way to work with Kotlin compiler when integrating Kotlin builds into different build systems.
|
||||
The Kotlin stdlib of at least Kotlin 1.4 is expected to be a dependency of a consumer of the API.
|
||||
|
||||
The default implementation of the API is located in the [build-tools-impl](../build-tools-impl) directory.
|
||||
The default implementation of the API is located in the [kotlin-build-tools-impl](../kotlin-build-tools-impl) directory.
|
||||
Interfaces implementation are expected to be loaded using the [ServiceLoader](https://docs.oracle.com/javase/8/docs/api/java/util/ServiceLoader.html).
|
||||
The purpose of such a segregation is to allow using this API with different Kotlin compiler versions.
|
||||
+1
-1
@@ -4,7 +4,7 @@ plugins {
|
||||
}
|
||||
|
||||
dependencies {
|
||||
api(project(":compiler:build-tools:build-tools-api"))
|
||||
api(project(":compiler:build-tools:kotlin-build-tools-api"))
|
||||
implementation(kotlinStdlib())
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user