-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathbuild.gradle
45 lines (38 loc) · 1.04 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
plugins {
id "java"
id 'checkstyle'
id 'application'
id 'io.freefair.lombok' version '8.0.1'
}
allprojects {
group = 'com.epam.aidial'
version = "0.28.0-rc"
apply plugin: 'java'
apply plugin: 'checkstyle'
apply plugin: 'application'
apply plugin: 'io.freefair.lombok'
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
}
checkstyle {
configDirectory = file("$rootProject.projectDir/checkstyle")
}
repositories {
maven {
url = uri("https://maven.pkg.github.com/epam/jclouds")
credentials {
username = project.findProperty("gpr.user") ?: System.getenv("GPR_USERNAME")
password = project.findProperty("gpr.key") ?: System.getenv("GPR_PASSWORD")
}
}
mavenCentral()
}
configurations.configureEach {
resolutionStrategy {
force 'com.google.code.gson:gson:2.11.0'
force 'net.minidev:json-smart:2.5.2'
}
}
}