-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
33 lines (26 loc) · 1.23 KB
/
build.gradle
File metadata and controls
33 lines (26 loc) · 1.23 KB
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
plugins {
id 'java-library'
}
dependencies {
compile group: 'com.google.guava', name: 'guava', version: '25.0-jre'
compile group: 'org.jetbrains', name: 'annotations', version: '15.0'
compile group: 'org.projectlombok', name: 'lombok', version: '1.16.20'
compile group: 'commons-io', name: 'commons-io', version: '2.6'
compile group: 'com.google.protobuf', name: 'protobuf-java', version: '3.5.1'
compile group: 'jfree', name: 'jfreechart', version: '1.0.12'
compile group: 'com.jcraft', name: 'jsch', version: '0.1.52'
testCompile group: 'org.hamcrest', name: 'hamcrest-all', version: '1.3'
testCompile group: 'org.junit.jupiter', name: 'junit-jupiter-api', version: '5.1.0'
testCompile group: 'org.junit.jupiter', name: 'junit-jupiter-params', version: '5.0.0-M4'
testCompile group: 'org.mockito', name: 'mockito-all', version: '1.9.5'
testRuntime group: 'org.junit.jupiter', name: 'junit-jupiter-engine', version: '5.1.0'
testRuntime group: 'org.junit.vintage', name: 'junit-vintage-engine', version: '5.1.0'
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-api', version: '5.1.0'
}
repositories {
jcenter()
}
task wrapper(type: Wrapper) {
description = 'Generates gradlew[.bat] scripts'
gradleVersion = '4.6'
}