-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
52 lines (46 loc) · 1.45 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
plugins {
id "io.freefair.lombok" version "5.3.0"
}
apply plugin: 'java'
repositories {
jcenter()
mavenLocal()
mavenCentral()
maven {
url "https://nexus.paymentcomponents.com/repository/public"
}
}
compileJava {
targetCompatibility = '11'
sourceCompatibility = '11'
}
dependencies {
implementation (
implementation('org.springframework.boot:spring-boot-starter-web:2.3.9.RELEASE') {
exclude group: 'org.springframework.boot', module: 'spring-boot-starter-tomcat'
},
'org.springframework.boot:spring-boot-starter-security:2.3.9.RELEASE',
'com.amazonaws.serverless:aws-serverless-java-container-springboot2:[1.5,)',
'io.symphonia:lambda-logging:1.0.3',
'com.amazonaws:aws-java-sdk:1.11.256',
'com.amazonaws:amazon-kinesis-client:1.2.1',
'com.amazonaws:aws-java-sdk-dynamodb',
'gr.datamation:smv:21.5.1:demo@jar',
'com.google.code.gson:gson:2.8.8',
'org.springframework.data:spring-data-releasetrain:Neumann-SR9',
'io.github.boostchicken:spring-data-dynamodb:5.2.5'
)
testImplementation('junit:junit')
testImplementation('org.springframework.boot:spring-boot-starter-test:2.3.9.RELEASE')
testImplementation('org.junit.vintage:junit-vintage-engine:5.8.1')
}
task buildZip(type: Zip) {
from compileJava
from processResources
into('lib') {
from(configurations.compileClasspath) {
exclude 'tomcat-embed-*'
}
}
}
build.dependsOn buildZip