-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
51 lines (40 loc) · 1.04 KB
/
build.gradle
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
41
42
43
44
45
46
47
48
49
50
51
plugins {
id 'org.jetbrains.kotlin.jvm' version '1.3.61' apply false
id "com.github.johnrengelman.shadow" version "2.0.3" apply false
id "org.jetbrains.intellij" version "0.4.16" apply false
}
allprojects {
apply plugin: "org.jetbrains.kotlin.jvm"
apply plugin: "com.github.johnrengelman.shadow"
}
apply plugin: "application"
group 'org.example'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.61"
compileOnly project(path: ":refinement-typeck", configuration: "shadow")
}
compileKotlin {
kotlinOptions {
jvmTarget = "1.8"
freeCompilerArgs += ["-Xplugin=${project.rootDir}/refinement-typeck/build/libs/refinement-typeck-1.0-SNAPSHOT.jar"]
}
}
compileTestKotlin {
kotlinOptions.jvmTarget = "1.8"
}
shadowJar {
configurations = [project.configurations.runtimeClasspath]
}
jar {
manifest.attributes(
"Main-Class": "MainKt"
)
}
wrapper {
gradleVersion = "6.0"
}
mainClassName = "MainKt"