-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
55 lines (43 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
52
53
54
55
buildscript {
ext.kotlin_version = '1.3.71'
repositories {
mavenCentral()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
plugins{
id 'com.github.johnrengelman.shadow' version '5.2.0'
}
group 'Crowbar'
version '0.2'
apply plugin: 'kotlin'
repositories {
mavenCentral()
}
test {
useJUnitPlatform()
}
wrapper {
gradleVersion = '5.6.3'
}
dependencies {
testImplementation("io.kotlintest:kotlintest-runner-junit5:3.4.0")
compileClasspath("io.kotlintest:kotlintest-runner-junit5:3.4.0")
implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
implementation fileTree(dir: 'lib', include: ['*.jar'])
implementation("com.github.ajalt:clikt:2.6.0")
}
compileKotlin {
kotlinOptions.jvmTarget = "1.8"
}
compileTestKotlin {
kotlinOptions.jvmTarget = "1.8"
}
jar {
manifest {
attributes 'Main-Class': 'org.abs_models.chisel.main.MainKt'
}
}