-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
53 lines (42 loc) · 1.22 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
plugins {
id 'java'
id 'distribution'
}
group 'nl.esciencecenter'
version '0.1'
//mainClassName = 'nl.esciencecenter.praline.Praline'
sourceCompatibility = 1.8
repositories {
mavenCentral()
jcenter()
maven() { url 'http://maven.nuiton.org/release' }
mavenLocal()
}
dependencies {
implementation 'nl.junglecomputing.ipl:ipl-support:2.3.1'
implementation 'nl.junglecomputing.cashmere:cashmere:0.2.0'
implementation "com.sparkjava:spark-core:2.6.0"
implementation "com.beust:jcommander:1.72"
implementation group: 'org.slf4j', name: 'slf4j-api', version: '1.7.25'
// implementation group: 'org.slf4j', name: 'slf4j-simple', version: '1.7.25'
implementation 'org.slf4j:slf4j-log4j12:1.7.21'
implementation 'nl.junglecomputing.cashmere:cashmere:0.2.2-SNAPSHOT'
implementation 'nl.junglecomputing:constellation:2.0.0'
testImplementation group: 'junit', name: 'junit', version: '4.12'
}
installDist.dependsOn jar
distributions {
main {
baseName = project.name
contents {
from 'log4j.properties'
into('bin') {
from 'scripts'
}
into('lib') {
from configurations.runtimeClasspath
from jar.archivePath
}
}
}
}