plugins { id 'java' id 'org.springframework.boot' version '2.7.2' id 'io.spring.dependency-management' version '1.0.12.RELEASE' id "org.owasp.dependencycheck" version "7.1.1" id "com.diffplug.spotless" version "6.9.0" } group = 'net.hostsharing' version = '0.0.1-SNAPSHOT' sourceCompatibility = '17' wrapper { distributionType = Wrapper.DistributionType.BIN gradleVersion = '7.5' } configurations { compileOnly { extendsFrom annotationProcessor } } repositories { mavenCentral() } ext { set('testcontainersVersion', "1.17.3") } // wrapper dependencies { 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-jdbc' implementation 'org.springframework.boot:spring-boot-starter-web' implementation 'org.springdoc:springdoc-openapi-ui:1.6.9' implementation 'org.liquibase:liquibase-core' implementation 'com.vladmihalcea:hibernate-types-55:2.17.1' compileOnly 'org.projectlombok:lombok' developmentOnly 'org.springframework.boot:spring-boot-devtools' runtimeOnly 'org.postgresql:postgresql' annotationProcessor 'org.projectlombok:lombok' testImplementation 'org.springframework.boot:spring-boot-starter-test' testImplementation 'org.testcontainers:testcontainers' testImplementation 'org.testcontainers:junit-jupiter' testImplementation 'org.testcontainers:postgresql' testImplementation 'com.tngtech.archunit:archunit-junit5:1.0.0-rc1' } dependencyManagement { imports { mavenBom "org.testcontainers:testcontainers-bom:${testcontainersVersion}" } } tasks.named('test') { useJUnitPlatform() } spotless { java { removeUnusedImports() endWithNewline() toggleOffOn() } } project.tasks.check.dependsOn(spotlessCheck) dependencyCheck { cveValidForHours=4 format = 'ALL' suppressionFile = 'etc/owasp-dependency-check-suppression.xml' failOnError = true failBuildOnCVSS = 7 } project.tasks.check.dependsOn(dependencyCheckAnalyze)