60 lines
1.7 KiB
Groovy
60 lines
1.7 KiB
Groovy
plugins {
|
|
id 'java'
|
|
id 'org.springframework.boot' version '3.4.2'
|
|
id 'io.spring.dependency-management' version '1.1.7'
|
|
id 'jacoco'
|
|
}
|
|
|
|
group = 'enseirb'
|
|
version = '0.0.1-SNAPSHOT'
|
|
|
|
java {
|
|
toolchain {
|
|
languageVersion = JavaLanguageVersion.of(21)
|
|
}
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'org.springframework.boot:spring-boot-starter-oauth2-resource-server'
|
|
implementation 'org.springframework.boot:spring-boot-starter-web'
|
|
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
|
|
implementation 'org.springframework.boot:spring-boot-starter-validation'
|
|
implementation 'org.springframework.boot:spring-boot-starter-data-rest'
|
|
implementation group: 'org.apache.logging.log4j', name: 'log4j-api', version: '2.+'
|
|
implementation group: 'org.apache.logging.log4j', name: 'log4j-core', version: '2.+'
|
|
implementation 'org.postgresql:postgresql'
|
|
implementation group: 'com.itextpdf', name: 'itextpdf', version: '5.5.13.3'
|
|
|
|
testImplementation 'org.springframework.boot:spring-boot-starter-test'
|
|
testImplementation 'com.h2database:h2'
|
|
|
|
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
|
|
}
|
|
|
|
tasks.named('test') {
|
|
useJUnitPlatform()
|
|
}
|
|
|
|
|
|
test {
|
|
finalizedBy jacocoTestReport // report is always generated after tests run
|
|
}
|
|
jacocoTestReport {
|
|
dependsOn test // tests are required to run before generating the report
|
|
reports {
|
|
xml.required = false
|
|
csv.required = false
|
|
html.outputLocation = layout.buildDirectory.dir('jacocoHtml')
|
|
}
|
|
}
|
|
|
|
|
|
jacoco {
|
|
toolVersion = "0.8.12"
|
|
reportsDirectory = layout.buildDirectory.dir('customJacocoReportDir')
|
|
}
|