-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathbuild.gradle
49 lines (41 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
plugins {
id 'org.springframework.boot' version '2.5.10'
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
id 'java'
}
group = 'com.codigo_morsa'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '11'
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-data-r2dbc'
implementation 'org.springframework.boot:spring-boot-starter-webflux'
implementation 'org.springframework.boot:spring-boot-starter-actuator'
implementation 'org.springframework.boot:spring-boot-starter-security'
implementation 'io.awspring.cloud:spring-cloud-starter-aws:2.4.0'
implementation 'io.awspring.cloud:spring-cloud-starter-aws-parameter-store-config:2.4.0'
implementation 'io.micrometer:micrometer-core'
implementation 'io.micrometer:micrometer-registry-cloudwatch2'
implementation 'org.springframework.security:spring-security-oauth2-resource-server'
implementation 'org.springframework.security:spring-security-oauth2-jose'
implementation 'software.amazon.awssdk:dynamodb-enhanced:2.15.82'
runtimeOnly 'com.h2database:h2'
runtimeOnly 'io.r2dbc:r2dbc-h2'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'io.projectreactor:reactor-test'
}
dependencyManagement {
imports {
mavenBom "software.amazon.awssdk:bom:2.15.82"
}
}
tasks.named('test') {
useJUnitPlatform()
}
bootJar {
manifest {
attributes 'Start-Class': 'com.codigo_morsa.docker.DockerApplication'
}
}