-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
37 lines (30 loc) · 894 Bytes
/
build.gradle
File metadata and controls
37 lines (30 loc) · 894 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
plugins {
id 'java'
id "com.github.johnrengelman.shadow" version "4.0.4"
}
test {
useJUnitPlatform()
}
group 'com.amairovi'
version '1.0'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
jar {
manifest {
attributes(
'Main-Class': 'com.amairovi.App'
)
}
}
dependencies {
compile group: 'com.rometools', name: 'rome', version: '1.12.0'
compile group: 'org.yaml', name: 'snakeyaml', version: '1.23'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.3.1'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.3.1'
testCompile 'org.junit.jupiter:junit-jupiter-params:5.3.1'
testCompile group: 'org.mockito', name: 'mockito-core', version: '2.24.5'
testCompile 'org.hamcrest:hamcrest-library:1.3'
testCompile group: 'org.mock-server', name: 'mockserver-netty', version: '5.5.1'
}