-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.gradle
179 lines (148 loc) · 5.96 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
plugins {
id "org.springframework.boot" version "2.7.5"
id "io.spring.dependency-management" version "1.1.0"
id "io.freefair.lombok" version "6.5.1"
id "io.freefair.maven-publish-java" version "6.5.1"
id "com.github.kt3k.coveralls" version "2.12.0"
id "org.owasp.dependencycheck" version "7.3.0"
id 'org.asciidoctor.jvm.convert' version '3.3.2'
id "net.researchgate.release" version "3.0.2"
id "com.gorylenko.gradle-git-properties" version "2.4.1"
id 'java'
id 'jacoco'
}
jar {
archiveBaseName = 'collection-api'
// version is defined in file 'gradle.properties'
archiveVersion = System.getenv('version')
}
repositories {
mavenLocal()
mavenCentral()
}
sourceCompatibility = 1.8
targetCompatibility = 1.8
configurations {
all*.exclude module : 'spring-boot-starter-logging'
}
ext {
set('springBootVersion', "2.7.5")
set('springDocVersion', "1.6.9")
set('keycloakVersion', "19.0.0")
// directory for generated code snippets during tests
snippetsDir = file("build/generated-snippets")
}
println "Running gradle version: $gradle.gradleVersion"
println "Building ${name} version: ${version}"
println "JDK version: ${JavaVersion.current()}"
if (System.getProperty('profile') == 'minimal') {
println 'Using minimal profile for building ' + project.getName()
apply from: 'gradle/profile-minimal.gradle'
} else {
println 'Using default profile executing all tests for building ' + project.getName()
apply from: 'gradle/profile-complete.gradle'
}
dependencies {
// boot starter
implementation "org.springframework.boot:spring-boot-starter-validation"
implementation "org.springframework.boot:spring-boot-starter-data-jpa"
implementation "org.springframework.boot:spring-boot-starter-data-rest"
implementation "org.springframework.boot:spring-boot-starter-mail"
implementation "org.springframework.boot:spring-boot-starter-actuator"
implementation "org.springframework.boot:spring-boot-starter-thymeleaf"
implementation "org.springframework:spring-messaging:5.3.23"
implementation "org.springframework.security:spring-security-web:5.7.5"
implementation "org.springframework.security:spring-security-config:5.7.5"
// cloud support
implementation "org.springframework.cloud:spring-cloud-starter-config:3.1.5"
implementation "org.springframework.cloud:spring-cloud-starter-netflix-eureka-client:3.1.4"
// springdoc
implementation "org.springdoc:springdoc-openapi-ui:${springDocVersion}"
implementation "org.springdoc:springdoc-openapi-data-rest:${springDocVersion}"
implementation "org.springdoc:springdoc-openapi-webmvc-core:${springDocVersion}"
implementation "edu.kit.datamanager:repo-core:1.1.2"
implementation("edu.kit.datamanager:service-base:1.1.1"){
exclude group: 'org.javers', module: 'javers-spring-boot-starter-sql'
}
implementation "de.codecentric:spring-boot-admin-starter-client:2.7.10"
//Keycloak
implementation "org.keycloak:keycloak-spring-boot-starter:${keycloakVersion}"
//implementation "com.nimbusds:nimbus-jose-jwt:9.25.6"
//implementation "io.jsonwebtoken:jjwt-api:0.11.5"
//implementation "io.jsonwebtoken:jjwt-impl:0.11.5"
//implementation "io.jsonwebtoken:jjwt-jackson:0.11.5"
implementation "org.apache.commons:commons-collections4:4.4"
implementation "javax.xml.bind:jaxb-api:2.3.1"
implementation "org.hamcrest:hamcrest:2.2"
implementation "com.googlecode.json-simple:json-simple:1.1.1"
runtimeOnly "org.apache.httpcomponents:httpclient:4.5.13"
// driver for postgres
implementation "org.postgresql:postgresql:42.5.4"
//driver for h2
implementation "com.h2database:h2:2.1.214"
testImplementation "org.springframework.restdocs:spring-restdocs-mockmvc:2.0.6.RELEASE"
testImplementation "org.springframework.boot:spring-boot-starter-test"
testImplementation "org.springframework:spring-test"
testImplementation "org.springframework.security:spring-security-test"
//Java 11 Support
testImplementation "org.mockito:mockito-core:4.9.0"
testImplementation "org.powermock:powermock-module-junit4:2.0.9"
testImplementation "org.powermock:powermock-api-mockito2:2.0.9"
testImplementation "junit:junit:4.13.2"
}
dependencyManagement {
imports { mavenBom("org.keycloak.bom:keycloak-adapter-bom:${keycloakVersion}") }
}
if (project.hasProperty('release')) {
println 'Using \'release\' profile for building ' + project.getName()
apply from: 'gradle/profile-deploy.gradle'
}
test {
testLogging {
outputs.upToDateWhen {false}
showStandardStreams = true
}
environment "spring.config.location", "classpath:/test-config/"
}
tasks.withType(Test) {
testLogging {
events 'started', 'passed'
}
}
springBoot {
buildInfo()
}
bootJar {
println 'Create bootable jar...'
archiveFileName = "${archiveBaseName.get()}.${archiveExtension.get()}"
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
manifest {
attributes 'Main-Class': 'org.springframework.boot.loader.PropertiesLauncher'
}
launchScript()
}
// task for printing project name.
task printProjectName {
doLast {
println "${project.name}"
}
}
jacocoTestReport {
reports {
xml.enabled true
html.enabled true
}
afterEvaluate {
//exclude some classes/package from code coverage report
classDirectories.setFrom(files(classDirectories.files.collect {
fileTree(dir: it, exclude: [\
'edu/kit/datamanager/collection/configuration/**', \
'edu/kit/datamanager/collection/filters/**', \
'edu/kit/datamanager/collection/Application*', \
'edu/kit/datamanager/collection/dto/**', \
'edu/kit/datamanager/collection/web/CollectionApiUI*', \
'edu/kit/datamanager/collection/web/impl/CollectionApiUIImpl*'
])
}))
}
}