-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
142 lines (110 loc) · 3.6 KB
/
build.gradle
File metadata and controls
142 lines (110 loc) · 3.6 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
plugins {
id 'java'
id 'org.springframework.boot' version '3.2.1'
id 'io.spring.dependency-management' version '1.1.4'
id 'org.asciidoctor.jvm.convert' version '3.3.2'
id 'com.epages.restdocs-api-spec' version '0.18.4'
}
group = 'com.example'
version = '0.0.1-SNAPSHOT'
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
}
configurations {
asciidoctorExt
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
}
ext {
snippetsDir = file('build/generated-snippets')
}
dependencies {
// Spring WEB
implementation 'org.springframework.boot:spring-boot-starter-web'
// Spring JPA
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
// LOMBOK
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
// MYSQL
runtimeOnly 'com.mysql:mysql-connector-j'
testImplementation 'com.h2database:h2'
// Spring TEST
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'org.awaitility:awaitility'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
implementation 'org.springframework.boot:spring-boot-starter-actuator'
// Spring REST Docs
asciidoctorExt 'org.springframework.restdocs:spring-restdocs-asciidoctor'
testImplementation 'org.springframework.restdocs:spring-restdocs-mockmvc'
// Swagger-ui
implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.2.0'
// OpenAPI
testImplementation 'com.epages:restdocs-api-spec-mockmvc:0.18.4'
// JWT
implementation 'io.jsonwebtoken:jjwt-api:0.11.5'
runtimeOnly 'io.jsonwebtoken:jjwt-impl:0.11.5'
runtimeOnly 'io.jsonwebtoken:jjwt-jackson:0.11.5'
// Redis
implementation 'org.springframework.boot:spring-boot-starter-data-redis'
// WebSocket
implementation 'org.springframework.boot:spring-boot-starter-websocket'
//SMTP
implementation 'org.springframework.boot:spring-boot-starter-mail'
// coolSMS
implementation 'net.nurigo:sdk:4.3.0'
// S3
implementation 'org.springframework.cloud:spring-cloud-starter-aws:2.2.6.RELEASE'
testImplementation 'io.findify:s3mock_2.13:0.2.6'
// AWS rekognition
implementation platform('software.amazon.awssdk:bom:2.25.0')
implementation 'software.amazon.awssdk:rekognition'
// Logback
implementation 'ch.qos.logback.contrib:logback-json-classic:0.1.5'
implementation 'ch.qos.logback.contrib:logback-jackson:0.1.5'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.15.2'
implementation 'net.logstash.logback:logstash-logback-encoder:7.3'
// Firebase
implementation 'com.google.firebase:firebase-admin:9.2.0'
//AWS Parameter Store
implementation platform("io.awspring.cloud:spring-cloud-aws-dependencies:3.1.0")
implementation 'io.awspring.cloud:spring-cloud-aws-starter-parameter-store'
// MongoDB
implementation 'org.springframework.boot:spring-boot-starter-data-mongodb'
testImplementation 'de.flapdoodle.embed:de.flapdoodle.embed.mongo.spring30x:4.11.0'
}
test {
outputs.dir snippetsDir
useJUnitPlatform()
}
asciidoctor {
configurations 'asciidoctorExt'
attributes 'snippets': snippetsDir
sourceDir = file('src/docs/asciidoc')
outputDir = file("${layout.buildDirectory.get()}/docs/asciidoc")
doFirst {
file(snippetsDir).mkdirs()
}
dependsOn test
inputs.dir snippetsDir
}
tasks.register('copyDocumentToStatic', Copy) {
dependsOn asciidoctor
from("${layout.buildDirectory.get()}/docs/asciidoc")
into("${layout.buildDirectory.get()}/resources/main/static/docs")
}
bootJar {
dependsOn tasks.named('copyDocumentToStatic')
}
resolveMainClassName {
dependsOn tasks.named('copyDocumentToStatic')
}
jar {
dependsOn tasks.named('copyDocumentToStatic')
}