blob: 68d3da89d11324f0f386dcba4f0f1f0078de8209 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
import javax.tools.ToolProvider
buildscript {
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_compiler_to_compile_core_version"
}
}
apply plugin: 'kotlin'
sourceCompatibility = 1.6
dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_compiler_version"
compile "org.jetbrains.kotlin:kotlin-reflect:$kotlin_compiler_version"
compile group: 'com.google.inject', name: 'guice', version: '3.0'
compile "org.jsoup:jsoup:1.8.3"
compile "org.jetbrains.kotlin:kotlin-compiler:$kotlin_compiler_version"
compile "org.jetbrains.kotlin:kotlin-script-runtime:$kotlin_compiler_version"
compile "teamcity:kotlin-ide-common:$kotlin_compiler_version"
compile "teamcity:markdown:$kotlin_compiler_version"
compile intellijCoreAnalysis()
//tools.jar
def toolsJar = files(((URLClassLoader) ToolProvider.getSystemToolClassLoader()).getURLs().findAll { it.path.endsWith("jar") })
compileOnly toolsJar
testCompile toolsJar
compile project(":integration")
testCompile group: 'junit', name: 'junit', version: '4.12'
testCompile group: 'org.jetbrains.kotlin', name: 'kotlin-test-junit', version: kotlin_compiler_to_compile_core_version
testCompile "com.nhaarman:mockito-kotlin-kt1.1:1.5.0"
testCompile ideaRT()
}
|