mirror of
https://github.com/jillingk/java-spring-oldflow.git
synced 2026-03-10 08:01:21 +00:00
29 lines
775 B
Groovy
29 lines
775 B
Groovy
plugins {
|
|
id 'org.springframework.boot' version '2.3.5.RELEASE'
|
|
id 'io.spring.dependency-management' version '1.0.10.RELEASE'
|
|
id 'java'
|
|
}
|
|
|
|
group = 'com.adyen'
|
|
version = '0.0.1-SNAPSHOT'
|
|
sourceCompatibility = '11'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
|
|
implementation 'org.springframework.boot:spring-boot-starter-web'
|
|
implementation 'nz.net.ultraq.thymeleaf:thymeleaf-layout-dialect'
|
|
implementation 'com.adyen:adyen-java-api-library:20.0.0'
|
|
developmentOnly 'org.springframework.boot:spring-boot-devtools'
|
|
testImplementation('org.springframework.boot:spring-boot-starter-test') {
|
|
exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
|
|
}
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
}
|