-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
34 lines (29 loc) · 814 Bytes
/
build.gradle
File metadata and controls
34 lines (29 loc) · 814 Bytes
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
buildscript {
repositories {
mavenCentral()
}
dependencies {
// NOTE(jpr): version taken from git://git.jetbrains.org/idea/adt-tools-base.git/third_party/BUILD
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.3.41"
}
}
repositories {
mavenCentral()
}
apply plugin: 'kotlin'
apply plugin: 'java-library'
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
// NOTE(jpr): version taken from git://git.jetbrains.org/idea/adt-tools-base.git/third_party/BUILD
implementation "com.google.guava:guava:27.0.1-jre"
}
jar {
manifest {
attributes(
'Main-Class': 'com.radreichley.Application'
)
}
from {
configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) }
}
}