-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
60 lines (48 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
53
54
55
56
57
58
59
60
plugins {
id 'java'
id 'org.springframework.boot' version '3.0.2'
id 'io.spring.dependency-management' version '1.1.0'
id 'com.google.cloud.tools.jib' version '3.3.1'
}
group = 'com.edobry'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '19'
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
}
jib {
from {
image = "eclipse-temurin:19-jre"
}
to {
image = "edobry/moculus"
}
}
dependencies {
annotationProcessor 'org.projectlombok:lombok'
compileOnly 'org.projectlombok:lombok'
implementation 'org.springframework.boot:spring-boot-starter-actuator'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation "org.springframework.boot:spring-boot-starter-validation"
implementation "org.slf4j:slf4j-api:2.0.6"
implementation "org.springframework.boot:spring-boot-starter-log4j2"
modules {
module("org.springframework.boot:spring-boot-starter-logging") {
replacedBy "org.springframework.boot:spring-boot-starter-log4j2", "Use Log4j2 instead of Logback"
}
}
implementation(platform("software.amazon.awssdk:bom:2.17.24"))
implementation("software.amazon.awssdk:s3")
implementation("io.findify:s3mock_2.13:0.2.6")
implementation 'io.micrometer:micrometer-registry-prometheus:1.10.3'
implementation 'io.micrometer:micrometer-registry-statsd:1.10.3'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
}
//tasks.named('test') {
// useJUnitPlatform()
//}