57 lines
1.5 KiB
Groovy
57 lines
1.5 KiB
Groovy
|
plugins {
|
||
|
id 'org.springframework.boot' version '2.7.2'
|
||
|
id 'io.spring.dependency-management' version '1.0.12.RELEASE'
|
||
|
id 'java'
|
||
|
}
|
||
|
|
||
|
group = 'net.hostsharing'
|
||
|
version = '0.0.1-SNAPSHOT'
|
||
|
sourceCompatibility = '17'
|
||
|
|
||
|
configurations {
|
||
|
compileOnly {
|
||
|
extendsFrom annotationProcessor
|
||
|
}
|
||
|
}
|
||
|
|
||
|
repositories {
|
||
|
mavenCentral()
|
||
|
}
|
||
|
|
||
|
ext {
|
||
|
set('testcontainersVersion', "1.17.3")
|
||
|
}
|
||
|
|
||
|
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-hateoas'
|
||
|
implementation 'org.springframework.boot:spring-boot-starter-jdbc'
|
||
|
implementation 'org.springframework.boot:spring-boot-starter-web'
|
||
|
implementation 'org.liquibase:liquibase-core'
|
||
|
implementation 'org.springframework.data:spring-data-rest-hal-explorer'
|
||
|
|
||
|
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'
|
||
|
}
|
||
|
|
||
|
dependencyManagement {
|
||
|
imports {
|
||
|
mavenBom "org.testcontainers:testcontainers-bom:${testcontainersVersion}"
|
||
|
}
|
||
|
}
|
||
|
|
||
|
tasks.named('test') {
|
||
|
useJUnitPlatform()
|
||
|
}
|