diff --git a/giftcard-example/build.gradle b/giftcard-example/build.gradle index f67f6da..96a459d 100644 --- a/giftcard-example/build.gradle +++ b/giftcard-example/build.gradle @@ -15,14 +15,12 @@ repositories { } 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.1.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' - } + implementation libs.adyen.java + implementation libs.bundles.spring + + testImplementation(libs.bundles.spring.test){ + exclude (group: 'org.junit.vintage', module: 'junit-vintage-engine') + } } test {