-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbuild.gradle
160 lines (130 loc) · 5.15 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
plugins {
id 'org.springframework.boot' version '3.4.2'
id 'io.spring.dependency-management' version '1.1.7'
id 'io.freefair.lombok' version '8.12'
id 'io.freefair.maven-publish-java' version '8.12'
id 'org.owasp.dependencycheck' version '12.0.1'
id 'org.asciidoctor.jvm.convert' version '4.0.4'
id 'net.researchgate.release' version '3.1.0'
id 'com.gorylenko.gradle-git-properties' version '2.4.2'
id 'java'
id 'jacoco'
}
jar {
archiveBaseName = 'base-repo'
// version is defined in file 'gradle.properties'
archiveVersion = System.getenv('version')
}
repositories {
mavenLocal()
mavenCentral()
}
//configurations {
// all*.exclude module : 'spring-boot-starter-logging'
//}
ext {
set('javersVersion', "7.7.0")
set('springBootVersion', "3.2.1")
set('springDocVersion', "2.8.4")
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()}"
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'
}
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-security"
implementation "org.springframework.boot:spring-boot-starter-actuator"
implementation 'org.springframework.data:spring-data-elasticsearch:5.4.2'
implementation "org.springframework:spring-messaging:6.2.2"
// cloud support
implementation "org.springframework.cloud:spring-cloud-starter-config:4.2.0"
implementation "org.springframework.cloud:spring-cloud-starter-netflix-eureka-client:4.2.0"
implementation "org.springframework.cloud:spring-cloud-gateway-mvc:4.2.0"
implementation 'de.codecentric:spring-boot-admin-starter-client:3.4.1'
// 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}"
implementation "edu.kit.datamanager:repo-core:1.2.5"
implementation "edu.kit.datamanager:service-base:1.3.3"
//implementation "com.github.victools:jsonschema-generator:4.23.0"
//Keycloak
// implementation "org.keycloak:keycloak-spring-boot-starter:${keycloakVersion}"
implementation "com.nimbusds:nimbus-jose-jwt:10.0.1"
// 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.javers:javers-core:${javersVersion}"
implementation "com.github.fge:json-patch:1.9"
implementation "com.bazaarvoice.jolt:jolt-core:0.1.7"
implementation "com.bazaarvoice.jolt:json-utils:0.1.8"
// implementation "javax.xml.bind:jaxb-api:2.3.1"
runtimeOnly "org.apache.httpcomponents:httpclient:4.5.14"
// driver for postgres
implementation "org.postgresql:postgresql:42.7.5"
//driver for h2
implementation "com.h2database:h2:2.3.232"
testImplementation "org.springframework.restdocs:spring-restdocs-mockmvc:3.0.3"
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-inline:5.2.0"
testImplementation "junit:junit:4.13.2"
}
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()
}
gitProperties {
failOnNoGitDirectory = 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()
}
jacoco {
toolVersion = "0.8.12"
}
// task for printing project name.
task printProjectName {
doLast {
println "${project.name}"
}
}