-
Notifications
You must be signed in to change notification settings - Fork 34
/
build.gradle
39 lines (30 loc) · 871 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
plugins {
id 'org.springframework.boot' version '2.3.8.RELEASE' apply false
id 'io.spring.dependency-management' version '1.0.10.RELEASE'
id 'java'
id 'com.gorylenko.gradle-git-properties' version '2.2.0'
}
allprojects {
repositories {
mavenCentral()
jcenter()
maven { url 'https://jitpack.io' }
}
}
subprojects {
apply plugin: 'java'
apply plugin: 'maven'
apply plugin: 'eclipse'
apply plugin: 'com.gorylenko.gradle-git-properties'
apply plugin: 'org.springframework.boot'
apply plugin: 'io.spring.dependency-management'
group = 'com.jojoldu'
version = '2.4.8'
sourceCompatibility = '1.8'
targetCompatibility = '1.8'
dependencyManagement {
imports {
mavenBom org.springframework.boot.gradle.plugin.SpringBootPlugin.BOM_COORDINATES
}
}
}