-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbuild.gradle
200 lines (169 loc) · 6.59 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
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
plugins {
id 'org.springframework.boot' version '3.4.1'
id 'io.spring.dependency-management' version '1.1.7'
id 'org.asciidoctor.jvm.convert' version '4.0.4'
id 'io.freefair.maven-publish-java' version '8.11'
id "org.owasp.dependencycheck" version "12.0.1"
id 'net.researchgate.release' version '3.1.0'
id "com.gorylenko.gradle-git-properties" version "2.4.2"
id 'io.freefair.lombok' version '8.11'
id 'java'
id 'jacoco'
}
description = 'Generic mapping service supporting different mapping implementations.'
group = 'edu.kit.datamanager'
println "Running gradle version: $gradle.gradleVersion"
println "Building ${name} version: ${version}"
println "JDK version: ${JavaVersion.current()}"
configurations {
asciidoctorExt
compileOnly {
extendsFrom annotationProcessor
}
}
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
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'
}
repositories {
mavenLocal()
mavenCentral()
}
ext {
set('snippetsDir', file('build/generated-snippets'))
applicationProperties = System.getProperty('applicationProperties', './src/test/resources/test-config/application-test.properties')
pythonExecutable = System.getProperty('pythonExecutable', 'file:///usr/bin/python')
userDir = System.getProperty('user.dir')
set('springBootVersion', "3.2.1")
set('springDocVersion', "2.8.3")
set('javersVersion', "7.7.0")
set('keycloakVersion', "19.0.0")
}
dependencies {
implementation 'org.eclipse.jgit:org.eclipse.jgit:7.1.0.202411261347-r'
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-security'
implementation "org.springframework.boot:spring-boot-starter-data-rest"
implementation 'org.springframework.boot:spring-boot-starter-validation'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-actuator'
// springdoc
implementation "org.springdoc:springdoc-openapi-starter-webmvc-ui:${springDocVersion}"
implementation "org.springdoc:springdoc-openapi-starter-common:${springDocVersion}"
implementation "org.springdoc:springdoc-openapi-starter-webmvc-api:${springDocVersion}"
// cloud support
//implementation "org.springframework.cloud:spring-cloud-starter-config:4.1.3"
//implementation "org.springframework.cloud:spring-cloud-starter-netflix-eureka-client:4.1.3"
//implementation "org.springframework.cloud:spring-cloud-gateway-mvc:4.1.5"
implementation "org.javers:javers-spring-boot-starter-sql:${javersVersion}"
implementation 'org.apache.httpcomponents:httpclient:4.5.14'
implementation 'org.apache.commons:commons-collections4:4.4'
implementation 'org.json:json:20250107'
implementation 'com.github.jknack:handlebars:4.4.0'
implementation 'com.google.guava:guava:33.4.0-jre'
implementation 'commons-io:commons-io:2.18.0'
implementation 'javax.validation:validation-api:2.0.1.Final'
implementation 'edu.kit.datamanager:service-base:1.3.3'
// apache
implementation "org.apache.tika:tika-core:2.9.2"
testImplementation platform('org.junit:junit-bom')
testImplementation 'org.junit.jupiter:junit-jupiter'
testImplementation 'org.junit.jupiter:junit-jupiter-migrationsupport'
testImplementation 'org.junit.vintage:junit-vintage-engine'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'org.springframework.security:spring-security-test'
//testImplementation 'org.springframework:spring-test'
testImplementation 'org.springframework.restdocs:spring-restdocs-mockmvc:3.0.3'
testImplementation 'org.mockito:mockito-core:5.15.2'
testImplementation 'org.powermock:powermock-module-junit4:2.0.9'
testImplementation 'org.powermock:powermock-api-mockito2:2.0.9'
testImplementation 'net.bytebuddy:byte-buddy:1.16.1'
annotationProcessor 'org.springframework.boot:spring-boot-configuration-processor'
runtimeOnly 'com.h2database:h2:2.3.232'
runtimeOnly 'org.postgresql:postgresql:42.7.5'
runtimeOnly 'org.apache.httpcomponents:httpclient:4.5.14'
asciidoctorExt 'org.springframework.restdocs:spring-restdocs-asciidoctor:3.0.3'
}
tasks.withType(JavaCompile) {
options.compilerArgs += ['-Xlint:unchecked']
}
test {
outputs.dir snippetsDir
finalizedBy jacocoTestReport
println("Running tests with configuration: ${applicationProperties}")
println("Running tests with python: ${pythonExecutable}")
println("Running tests in directory: ${userDir}")
environment 'spring.config.location', applicationProperties
environment 'pythonExecutable', pythonExecutable
useJUnitPlatform()
testLogging.showStandardStreams = true
}
jacoco {
toolVersion = "0.8.12"
}
jacocoTestReport{
dependsOn test
reports {
xml.required = true
html.required = true
}
}
asciidoctor {
inputs.dir snippetsDir
configurations 'asciidoctorExt'
dependsOn test
}
/*jar {
manifest {
attributes 'Main-Class': 'edu.kit.datamanager.mapping-service.MappingServiceApplication'
}
archiveBaseName = 'mapping-service'
// version is defined in file 'gradle.properties'
archiveVersion = System.getenv('version')
// disable plain jar file
enabled = false
}*/
bootJar {
println 'Create bootable jar...'
archiveFileName = "${archiveBaseName.get()}.${archiveExtension.get()}"
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
manifest {
attributes 'Main-Class': 'org.springframework.boot.loader.launch.PropertiesLauncher'
}
launchScript()
}
springBoot {
buildInfo()
}
bootRun {
systemProperty "spring.config.location", "file:$projectDir/"
systemProperty "pythonLocation", pythonExecutable
}
bootJar {
dependsOn asciidoctor
from ("${asciidoctor.outputDir}/html5") {
into 'static/docs'
}
launchScript()
}
release {
tagTemplate = 'v${version}'
}
task buildPluginJar(type: Jar) {
description = 'Bundeling only plugin classes'
archiveFileName.set("default-plugins-${version}.jar")
from sourceSets.main.output
include '**/plugins/impl/*.class'
}
// task for printing project name.
// should be the last task inside file
task printProjectName {
doLast {
println "${project.name}"
}
}