[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
@@ -0,0 +1,13 @@
|
||||
plugins {
|
||||
kotlin("jvm")
|
||||
id("jps-compatible")
|
||||
}
|
||||
|
||||
dependencies {
|
||||
api(project(":compiler:build-tools:kotlin-build-tools-api"))
|
||||
implementation(kotlinStdlib())
|
||||
}
|
||||
|
||||
publish()
|
||||
|
||||
standardPublicJars()
|
||||
+14
@@ -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")
|
||||
}
|
||||
}
|
||||
+1
@@ -0,0 +1 @@
|
||||
org.jetbrains.kotlin.buildtools.internal.CompilationServiceImpl
|
||||
Reference in New Issue
Block a user