-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
46 lines (39 loc) · 1003 Bytes
/
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
buildscript {
repositories {
mavenCentral()
jcenter()
}
}
group 'software.visionary'
version '1.0-SNAPSHOT'
apply plugin: 'java'
apply plugin: 'application'
repositories {
mavenCentral()
}
dependencies {
testImplementation(
'org.junit.jupiter:junit-jupiter-api:5.1.0',
'org.junit.jupiter:junit-jupiter-params:5.1.0',
'org.mockito:mockito-core:2.23.4'
)
testRuntimeOnly(
'org.junit.jupiter:junit-jupiter-engine:5.1.0',
'org.junit.vintage:junit-vintage-engine:5.1.0'
)
implementation group: 'org.threeten', name: 'threeten-extra', version: '1.4'
}
test {
useJUnitPlatform()
}
compileJava {
sourceCompatibility = 1.9
targetCompatibility = 1.9
mainClassName = "software.visionary.vitalizr.Client"
}
jar {
baseName = "vitalizr"
group = "software.visionary"
version = "0.0.1-SNAPSHOT"
manifest { attributes "Main-Class": "software.visionary.vitalizr.Client" }
}