-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
47 lines (39 loc) · 1.15 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
// Apply the gradle plugins
plugins {
id 'java'
id 'java-library'
id 'io.freefair.lombok' version '6.1.0'
}
// Global
allprojects {
apply plugin: 'java'
apply plugin: 'java-library'
apply plugin: 'io.freefair.lombok'
// Repositories
repositories {
mavenCentral()
}
// Lombok
lombok {
version = "1.18.20"
}
// java version
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
// In this section you declare the dependencies for your production and test code
dependencies {
// Constraints
constraints {
// OpenAPI Generator
api group: 'org.openapitools', name: 'openapi-generator', version: "${property('openapitools.version')}"
}
// JUnit5
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-api', version: '5.7.2'
testRuntimeOnly group: 'org.junit.jupiter', name: 'junit-jupiter-engine', version: '5.7.2'
// Commons
implementation group: 'commons-io', name: 'commons-io', version: '2.11.0'
}
test {
useJUnitPlatform()
}
}