-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
47 lines (37 loc) · 1.54 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
plugins {
id 'java'
id 'org.springframework.boot' version '3.2.3'
id 'io.spring.dependency-management' version '1.1.4'
}
compileJava {
options.compilerArgs << '-Xlint'
}
group = 'com.disk91'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '21'
repositories {
mavenCentral()
}
bootJar {
launchScript()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-actuator'
implementation 'org.springframework.boot:spring-boot-starter-data-mongodb'
implementation 'org.springframework.boot:spring-boot-starter-security'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation group: 'io.micrometer', name: 'micrometer-registry-prometheus', version: '1.12.1'
implementation group: 'org.springdoc', name: 'springdoc-openapi-ui', version: '1.6.15'
implementation group: 'javax.xml.bind', name: 'jaxb-api', version: '2.3.1'
//implementation group: 'org.openjdk.jol', name: 'jol-core', version: '0.17'
implementation group: 'com.amazonaws', name:'aws-java-sdk', version: '1.12.668'
implementation group: 'io.grpc', name: 'grpc-okhttp', version: '1.60.1'
implementation group: 'io.grpc', name: 'grpc-netty', version:'1.60.1'
implementation group: 'io.grpc', name: 'grpc-protobuf', version:'1.60.1'
implementation group: 'io.grpc', name: 'grpc-stub', version:'1.60.1'
implementation group: 'com.uber', name: 'h3', version:'4.1.1'
//testImplementation 'org.springframework.boot:spring-boot-starter-test'
}
tasks.named('test') {
useJUnitPlatform()
}