[Build] Add the kotlin- prefix to the build tools API modules names

KT-57396
This commit is contained in:
Alexander.Likhachev
2023-04-18 21:10:40 +02:00
committed by Space Team
parent b6fdc2dbfc
commit ec4fab57a7
14 changed files with 11 additions and 11 deletions
@@ -0,0 +1,13 @@
plugins {
kotlin("jvm")
id("jps-compatible")
}
dependencies {
api(project(":compiler:build-tools:kotlin-build-tools-api"))
implementation(kotlinStdlib())
}
publish()
standardPublicJars()
@@ -0,0 +1,14 @@
/*
* Copyright 2010-2023 JetBrains s.r.o. and Kotlin Programming Language contributors.
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
*/
package org.jetbrains.kotlin.buildtools.internal
import org.jetbrains.kotlin.buildtools.api.CompilationService
internal class CompilationServiceImpl : CompilationService {
override fun compile() {
println("I'm simulating compilation, nothing more yet")
}
}
@@ -0,0 +1 @@
org.jetbrains.kotlin.buildtools.internal.CompilationServiceImpl