-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
42 lines (34 loc) · 1.07 KB
/
build.gradle
File metadata and controls
42 lines (34 loc) · 1.07 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
34
35
36
37
38
39
40
41
42
plugins {
id "com.github.ben-manes.versions" version "0.25.0"
id "java"
id "checkstyle"
}
group 'com.github.fred84'
version '1.0-SNAPSHOT'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
implementation "com.fasterxml.jackson.core:jackson-annotations:2.10.0"
implementation "com.fasterxml.jackson.core:jackson-databind:2.10.0"
implementation "com.fasterxml.jackson.core:jackson-core:2.10.0"
implementation "io.lettuce:lettuce-core:5.2.0.RELEASE"
implementation "ch.qos.logback:logback-classic:1.2.3"
implementation "javax.annotation:javax.annotation-api:1.3.2"
implementation "io.micrometer:micrometer-core:1.3.0"
implementation 'org.jetbrains:annotations:16.0.1'
testImplementation "org.junit.jupiter:junit-jupiter:5.5.2"
testImplementation "org.hamcrest:hamcrest:2.1"
testImplementation 'eu.rekawek.toxiproxy:toxiproxy-java:2.1.3'
}
checkstyle {
toolVersion("8.21")
configFile = file('checkstyle.xml')
}
tasks.withType(Test) {
useJUnitPlatform()
}
wrapper {
gradleVersion = '5.6.2'
}