-
Notifications
You must be signed in to change notification settings - Fork 1
/
settings.gradle
28 lines (23 loc) · 943 Bytes
/
settings.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
buildscript {
repositories {
maven { url "https://maven.aliyun.com/repository/public" }
maven { url "https://maven.aliyun.com/repository/gradle-plugin" }
mavenCentral()
maven { url "https://plugins.gradle.org/m2/" }
}
dependencies {
//noinspection DifferentKotlinGradleVersion
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.21"
classpath "gradle.plugin.com.hierynomus.gradle.plugins:license-gradle-plugin:0.16.1"
classpath "io.freefair.gradle:lombok-plugin:8.10"
classpath "io.spring.gradle:dependency-management-plugin:1.1.6"
}
}
rootProject.name = 'root'
include 'binders'
include 'binders:spring-cloud-stream-binder-redis-core'
include 'binders:spring-cloud-stream-binder-redis'
include 'binders:spring-cloud-starter-stream-redis'
include 'bom'
// include 'bom:spring-cloud-starter-parent'
include 'bom:spring-cloud-stream-dependencies'