-
Notifications
You must be signed in to change notification settings - Fork 17
/
settings.gradle.kts
43 lines (36 loc) · 1.05 KB
/
settings.gradle.kts
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
pluginManagement {
plugins {
id("com.google.cloud.tools.jib") version "3.4.0"
id("org.springframework.boot") version "2.7.17"
}
}
dependencyResolutionManagement {
repositories {
mavenCentral()
mavenLocal()
maven {
setUrl("https://oss.sonatype.org/content/repositories/snapshots")
}
}
}
buildCache {
local {
isEnabled = true
}
}
// End to end tests
include(":validator")
//id("com.diffplug.spotless") version "6.22.0"
//id("com.github.ben-manes.versions") version "0.50.0"
//id("com.github.jk1.dependency-license-report") version "2.5"
//id("com.github.johnrengelman.shadow") version "8.1.1"
//id("com.google.cloud.tools.jib") version "3.4.0"
//id("io.github.gradle-nexus.publish-plugin") version "1.3.0"
//id("nebula.release") version "18.0.6"
//id("org.springframework.boot") version "2.7.17"
//id("org.owasp.dependencycheck") version "8.4.0"
//
//
//id("org.springframework.boot")
//id("io.spring.dependency-management") version "1.1.0"
//id("com.google.cloud.tools.jib")