034af78b0f
Rename raw-fir:common to raw-fir:common -> raw-fir:fir-common. If there's dependency both on :compiler:visualizer:common and :compiler:fir:raw-fir:common, only one of artifact is left in classpath
31 lines
827 B
Kotlin
31 lines
827 B
Kotlin
/*
|
|
* Copyright 2000-2018 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.
|
|
*/
|
|
|
|
plugins {
|
|
kotlin("jvm")
|
|
id("jps-compatible")
|
|
}
|
|
|
|
dependencies {
|
|
compile(project(":compiler:psi"))
|
|
compile(project(":core:descriptors"))
|
|
compile(project(":compiler:fir:tree"))
|
|
|
|
compileOnly(intellijCoreDep()) { includeJars("intellij-core", "guava", rootProject = rootProject) }
|
|
|
|
Platform[192].orHigher {
|
|
testCompileOnly(intellijCoreDep()) { includeJars("intellij-core") }
|
|
testRuntimeOnly(intellijCoreDep()) { includeJars("intellij-core") }
|
|
}
|
|
}
|
|
|
|
sourceSets {
|
|
"main" { projectDefault() }
|
|
"test" { none() }
|
|
}
|
|
|
|
projectTest(parallel = true) {
|
|
workingDir = rootDir
|
|
} |