Move package org.jetbrains.kotlin.incremental.js to 'js.config'

This allows to replace dependency on 'js.frontend' with 'js.config', in
'kotlin-build-common' and 'daemon-common'. Also simplify some other
dependencies.
This commit is contained in:
Alexander Udalov
2020-03-15 13:02:31 +01:00
committed by Alexander Udalov
parent 4dcd0d1cb6
commit fe5104b865
7 changed files with 13 additions and 27 deletions
@@ -1,13 +1,3 @@
/*
* Copyright 2010-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license
* that can be found in the license/LICENSE.txt file.
*/
/*
* Copyright 2000-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license
* that can be found in the license/LICENSE.txt file.
*/
plugins {
java
kotlin("jvm")
@@ -16,16 +6,11 @@ plugins {
jvmTarget = "1.6"
val ktorExcludesForDaemon : List<Pair<String, String>> by rootProject.extra
val ktorExcludesForDaemon: List<Pair<String, String>> by rootProject.extra
dependencies {
compile(project(":core:descriptors"))
compile(project(":core:descriptors.jvm"))
compile(project(":compiler:util"))
compile(project(":compiler:cli-common"))
compileOnly(project(":daemon-common"))
compile(kotlinStdlib())
compileOnly(project(":js:js.frontend"))
compileOnly(intellijCoreDep()) { includeJars("intellij-core") }
compileOnly(intellijDep()) { includeIntellijCoreJarDependencies(project) }
compile(commonDep("org.jetbrains.kotlinx", "kotlinx-coroutines-core")) {
@@ -4,13 +4,10 @@ plugins {
}
dependencies {
compile(project(":core:descriptors"))
compile(project(":core:descriptors.jvm"))
compile(project(":compiler:util"))
compile(project(":compiler:cli-common"))
compile(project(":kotlin-build-common"))
compile(kotlinStdlib())
compileOnly(project(":js:js.frontend"))
compileOnly(project(":js:js.config"))
compileOnly(intellijCoreDep()) { includeJars("intellij-core") }
compileOnly(intellijDep()) { includeIntellijCoreJarDependencies(project) }
compile(commonDep("org.jetbrains.kotlinx", "kotlinx-coroutines-core")) {
@@ -22,4 +19,3 @@ sourceSets {
"main" { projectDefault() }
"test" {}
}