mirror of
https://github.com/jlengrand/adyen-java-spark-online-payments.git
synced 2026-03-10 08:01:24 +00:00
29 lines
600 B
Groovy
29 lines
600 B
Groovy
plugins {
|
|
id 'application'
|
|
}
|
|
|
|
version '0.1'
|
|
|
|
sourceCompatibility = 1.17
|
|
|
|
description ="""
|
|
Demo Adyen checkout integration with a Java Spark based backend
|
|
Project name: ${project.name}
|
|
"""
|
|
|
|
application {
|
|
mainClassName = 'checkout.Application'
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'com.sparkjava:spark-core:2.9.1'
|
|
implementation 'org.slf4j:slf4j-simple:1.7.25'
|
|
implementation 'com.sparkjava:spark-template-jinjava:2.7.1'
|
|
implementation 'org.apache.httpcomponents:httpclient:4.5.11'
|
|
implementation 'com.adyen:adyen-java-api-library:17.2.0'
|
|
}
|