-
Notifications
You must be signed in to change notification settings - Fork 60
/
build.gradle
100 lines (88 loc) · 2.85 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
/*
* Copyright 2002-2020 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
plugins {
id 'org.springframework.boot' version '3.3.6'
id 'java'
id 'com.palantir.docker' version '0.36.0'
id 'io.spring.javaformat' version '0.0.43'
}
apply plugin: 'checkstyle'
apply plugin: 'io.spring.javaformat'
group = 'org.springframework.cloud'
archivesBaseName = 'bookstore-service-broker'
version = '0.0.1.BUILD-SNAPSHOT'
sourceCompatibility = 17
[compileJava, compileTestJava]*.options*.compilerArgs = [
"-Xlint:serial",
"-Xlint:varargs",
"-Xlint:cast",
"-Xlint:classfile",
"-Xlint:dep-ann",
"-Xlint:divzero",
"-Xlint:empty",
"-Xlint:finally",
"-Xlint:overrides",
"-Xlint:path",
"-Xlint:-processing",
"-Xlint:static",
"-Xlint:try",
"-Xlint:fallthrough",
"-Xlint:rawtypes",
"-Xlint:deprecation",
"-Xlint:unchecked",
"-Xlint:options",
"-Werror",
"-parameters"
]
repositories {
mavenCentral()
}
dependencies {
checkstyle("io.spring.javaformat:spring-javaformat-checkstyle:0.0.43")
implementation platform('org.springframework.boot:spring-boot-dependencies:3.3.6')
implementation('org.springframework.cloud:spring-cloud-starter-open-service-broker:4.3.1')
implementation('org.springframework.boot:spring-boot-starter-webflux')
implementation('org.springframework.boot:spring-boot-starter-actuator')
implementation('org.springframework.boot:spring-boot-starter-security')
implementation('org.springframework.boot:spring-boot-starter-data-mongodb-reactive')
implementation('org.springframework.hateoas:spring-hateoas')
implementation('de.flapdoodle.embed:de.flapdoodle.embed.mongo.spring3x:4.18.0')
runtimeOnly('org.springframework.boot:spring-boot-devtools')
testImplementation('org.springframework.boot:spring-boot-starter-test')
testImplementation('org.springframework.security:spring-security-test')
testImplementation('io.projectreactor:reactor-test')
}
checkstyle {
showViolations = true
}
checkstyleTest {
configFile = configDirectory.get().file("checkstyle-test.xml").asFile
}
test {
useJUnitPlatform()
}
wrapper {
gradleVersion = '8.11'
}
if (!project.hasProperty("dockerGroup")) {
ext.dockerGroup = "sample"
}
docker {
name "${dockerGroup}/bookstore-service-broker:${version}"
dockerfile file('../deploy/docker/Dockerfile')
files jar.archiveFile
buildArgs(['JAR_FILE': "${jar.archiveFileName}"])
}