-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
48 lines (37 loc) · 880 Bytes
/
build.gradle
File metadata and controls
48 lines (37 loc) · 880 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
buildscript {
ext.kotlin_version = '1.2.31'
repositories {
mavenCentral()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
plugins {
id "org.jetbrains.kotlin.jvm" version "1.2.31"
}
apply plugin: "kotlin"
apply plugin: 'application'
apply plugin: 'idea'
mainClassName = "IntelliPhynet.MainKt"
jar {
manifest {
attributes "Main-Class" : mainClassName
}
}
sourceSets {
main.kotlin.srcDirs += 'src/'
}
repositories {
mavenCentral()
flatDir {
dirs 'libs'
}
}
dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib"
compile name: 'fr.aphp.eds-all-1.0'
compile group: 'org.msgpack', name: 'jackson-dataformat-msgpack', version: '0.8.16'
compile group: 'org.zeromq', name: 'jeromq', version: '0.4.3'
}
archivesBaseName = "IntelliPhynet"