-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
41 lines (31 loc) · 958 Bytes
/
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
plugins {
id "java-library"
id "org.springframework.boot" version "3.2.3"
id "io.spring.dependency-management" version "1.1.4"
id "org.springdoc.openapi-gradle-plugin" version "1.8.0"
id "io.freefair.lombok" version "8.6"
id 'me.qoomon.git-versioning' version '6.4.2'
id "com.diffplug.spotless" version "6.25.0"
}
apply from: "https://cdn.jsdelivr.net/gh/heliannuuthus/integrate-deploy/gradle/multi-library.gradle"
ext {
openapiVersion = "2.3.0"
apolloClientVersion = "2.2.0"
}
allprojects {
repositories {
maven { url "https://maven.aliyun.com/repository/public" }
maven { url "https://maven.aliyun.com/repository/spring/" }
mavenCentral()
}
}
allprojects {
apply plugin: "org.springframework.boot"
apply plugin: "io.spring.dependency-management"
bootJar {
enabled = false
}
jar {
enabled = true
}
}