-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathsettings.gradle
More file actions
60 lines (54 loc) · 2 KB
/
settings.gradle
File metadata and controls
60 lines (54 loc) · 2 KB
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
59
60
buildscript {
repositories {
gradlePluginPortal()
mavenCentral()
mavenLocal()
}
dependencies {
classpath "com.redislabs.gradle:redislabs-parentbuild:$redislabsBuildVersion"
classpath "org.kordamp.gradle:java-project-gradle-plugin:$kordampPluginVersion"
classpath "org.kordamp.gradle:guide-gradle-plugin:$kordampPluginVersion"
classpath "org.springframework.boot:spring-boot-gradle-plugin:2.5.3"
classpath "io.spring.gradle:dependency-management-plugin:1.0.11.RELEASE"
classpath "com.github.node-gradle:gradle-node-plugin:3.0.1"
}
}
apply plugin: 'com.redislabs.gradle.redislabs-parentbuild'
rootProject.name = 'brewdis'
projects {
directories = ['app']
plugins {
all {
id 'idea'
}
path(':') {
id 'org.kordamp.gradle.java-project'
}
path(':brewdis-ui') {
id 'java-library'
id 'com.github.node-gradle.node'
}
path(':brewdis-api') {
id 'java-library'
id 'org.springframework.boot'
id 'io.spring.dependency-management'
}
}
}
enforce {
mergeStrategy = 'append'
rule(enforcer.rules.ForceDependencies) { r ->
r.dependencies.addAll "com.redislabs:mesclun:1.3.2",
"com.google.guava:guava:30.0-android",
"com.google.errorprone:error_prone_annotations:2.4.0",
"com.google.http-client:google-http-client:$googleHttpVersion",
"com.google.http-client:google-http-client-jackson2:$googleHttpVersion",
"com.google.api.grpc:proto-google-common-protos:2.0.1",
"com.google.api:gax:1.60.1",
"io.grpc:grpc-context:1.34.0",
"com.google.protobuf:protobuf-java:$protobufVersion",
"com.google.protobuf:protobuf-java-util:$protobufVersion",
"org.hdrhistogram:HdrHistogram:2.1.12",
"com.google.code.findbugs:jsr305:3.0.2"
}
}