forked from qy8502/jetcache-plus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
43 lines (37 loc) · 1006 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
42
43
ext {
jetcacheVersion = "2.6.0"
springBootVersion = "2.4.2"
springCloudAlibabaVersion = "2021.1"
lettuceVersion = "6.1.4.RELEASE"
dubboVersion = "2.7.8"
}
buildscript {
repositories {
maven { url 'https://maven.aliyun.com/repository/public/' }
mavenCentral()
}
dependencies {
classpath "io.spring.gradle:dependency-management-plugin:1.0.11.RELEASE"
}
}
subprojects {
apply plugin: 'java'
apply plugin: 'io.spring.dependency-management'
group = 'io.github.qy8502'
//version = '0.0.2-SNAPSHOT'
version = '0.0.3'
sourceCompatibility = '1.8'
repositories {
maven { url 'https://maven.aliyun.com/repository/public/' }
mavenCentral()
}
dependencyManagement {
imports {
mavenBom "org.springframework.boot:spring-boot-dependencies:${springBootVersion}"
}
}
compileJava {
options.encoding = "UTF-8"
options.compilerArgs << '-parameters'
}
}