-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
58 lines (43 loc) · 1.61 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
plugins {
id 'java'
id 'io.spring.dependency-management' version '1.1.5'
id 'org.springframework.boot' version '3.3.4'
}
group = 'mindustrytool'
version = '0.0.1-SNAPSHOT'
repositories {
mavenCentral()
google()
maven { url "https://m2.dv8tion.net/releases" }
maven { url "https://plugins.gradle.org/m2/" }
maven { url 'https://repo.spring.io/milestone' }
maven { url 'https://repo.spring.io/snapshot' }
maven { url "https://oss.sonatype.org/content/repositories/releases/" }
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-validation'
implementation 'org.springframework.boot:spring-boot-starter-webflux'
implementation 'org.springframework.boot:spring-boot-starter-security'
implementation 'org.springframework.boot:spring-boot-starter-reactor-netty'
implementation 'com.github.docker-java:docker-java-core:3.4.1'
implementation 'com.github.docker-java:docker-java-transport-httpclient5:3.4.1'
implementation 'org.modelmapper:modelmapper:3.1.0'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'io.projectreactor:reactor-test'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
compileOnly 'org.projectlombok:lombok'
developmentOnly 'org.springframework.boot:spring-boot-devtools'
annotationProcessor 'org.projectlombok:lombok'
}
configurations {
compileOnly {
extendsFrom annotationProcessor
}
compile {
exclude module: "spring-boot-starter-tomcat"
exclude module: "spring-boot-starter-web"
}
configureEach {
exclude(group: 'commons-logging', module: 'commons-logging')
}
}