Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 8 additions & 5 deletions buildSrc/src/main/kotlin/io/spine/dependency/local/Compiler.kt
Original file line number Diff line number Diff line change
Expand Up @@ -114,9 +114,6 @@ object Compiler : Dependency() {
val gradleApi
get() = "$group:compiler-gradle-api:$version"

val cliApi
get() = "$group:compiler-cli-api:$version"

val jvmModule = "$group:compiler-jvm"

fun jvm(version: String): String =
Expand All @@ -125,8 +122,15 @@ object Compiler : Dependency() {
val jvm
get() = jvm(version)

/**
* The all-in-one ("fat") distribution of the Compiler command-line application.
*
* The artifact is named `compiler-cli-all` because it is published by
* the `cliFatJar` publication of the `:cli` module. Keep this name in sync with
* the `Artifacts.fatCli()` function of the `compiler-gradle-api` module.
*/
val fatCli
get() = "$group:compiler-fat-cli:$version"
get() = "$group:compiler-cli-all:$version"

val testlib
get() = "$group:compiler-testlib:$version"
Expand All @@ -138,7 +142,6 @@ object Compiler : Dependency() {
params,
protocPlugin,
gradleApi,
cliApi,
jvm,
fatCli,
testlib
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,5 @@ object Validation {

val javaBundle = javaBundle(version)

const val model = "$group:$prefix-model:$version"

const val configModule = "$group:$prefix-configuration"
const val context = "$group:$prefix-context:$version"
}