-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
55 lines (46 loc) · 1.79 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
buildscript {
ext {
springBootVersion = '2.1.3.RELEASE'
}
repositories {
mavenCentral()
jcenter()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
classpath("com.github.jengelman.gradle.plugins:shadow:5.0.0")
}
}
apply plugin: 'java'
apply plugin: 'org.springframework.boot'
apply plugin: 'io.spring.dependency-management'
// Gradle Shadow: Creates portable JARs
apply plugin: 'com.github.johnrengelman.shadow'
group = 'com.form3'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '1.8'
repositories {
mavenCentral()
}
dependencies {
annotationProcessor "org.projectlombok:lombok"
implementation "org.springframework.boot:spring-boot-starter-web"
// SpringFox: Generates automated Swagger documentation for Spring APIs
implementation "io.springfox:springfox-swagger2:${springfoxVersion}"
implementation "io.springfox:springfox-swagger-ui:${springfoxVersion}"
// Spring Data Repository support for AWS DynamoDB
implementation "com.github.derjust:spring-data-dynamodb:${springDynamoVersion}"
implementation "com.amazonaws:aws-java-sdk-dynamodb:${dynamoSdkVersion}"
testImplementation "org.springframework.boot:spring-boot-starter-test"
testImplementation "io.rest-assured:rest-assured:${restAssuredVersion}"
testImplementation "io.cucumber:cucumber-java:${cucumberVersion}"
testImplementation "io.cucumber:cucumber-spring:${cucumberVersion}"
testImplementation "io.cucumber:cucumber-junit:${cucumberVersion}"
testImplementation "com.google.code.gson:gson:${gsonVersion}"
testImplementation "org.apache.commons:commons-io:${apacheIoVersion}"
}
jar {
manifest {
attributes 'Main-Class': 'com.form3.payments.PaymentApplication'
}
}