-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
62 lines (54 loc) · 1.98 KB
/
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
plugins {
id "com.gradle.build-scan" version "3.0"
id "net.saliman.properties" version "1.4.6"
id "com.github.hierynomus.license" version "0.14.0"
id "org.springframework.boot" version "2.1.5.RELEASE" apply false
id "io.spring.dependency-management" version "1.0.7.RELEASE" apply false
id "com.google.protobuf" version "0.8.10" apply false
id "com.bmuschko.docker-remote-api" version "3.4.4" apply false
}
buildScan {
termsOfServiceUrl = "https://gradle.com/terms-of-service"
termsOfServiceAgree = "yes"
}
allprojects {
apply plugin: "idea"
apply plugin: "net.saliman.properties"
apply plugin: "com.github.hierynomus.license"
ext {
// Dependency Versions
netifiSpringVersion = '1.6.9'
log4j2Version = '2.11.2'
netifiBomVersion = '1.6.9'
protobufVersion = '3.6.1'
rsocketVersion = '0.12.2-RC4'
rsocketRpcVersion = '0.2.18'
}
repositories {
mavenCentral()
jcenter()
}
license {
header rootProject.file('codequality/LICENSE_HEADER')
strictCheck true
excludes([ "**/*.json", "**/*.html", "**/*.js", "**/*.jpg" ])
}
}
subprojects {
apply plugin: 'io.spring.dependency-management'
dependencyManagement {
imports {
mavenBom "com.netifi:netifi-bom:${netifiBomVersion}"
mavenBom "org.apache.logging.log4j:log4j-bom:${log4j2Version}"
}
dependencies {
dependency "com.netifi:netifi-spring-boot-starter:${netifiSpringVersion}"
dependency "com.google.protobuf:protobuf-java:${protobufVersion}"
dependency "com.google.protobuf:protoc:${protobufVersion}"
dependency "io.rsocket:rsocket-core:${rsocketVersion}"
dependency "io.rsocket:rsocket-transport-netty:${rsocketVersion}"
dependency "io.rsocket.rpc:rsocket-rpc-protobuf:${rsocketRpcVersion}"
dependency "io.rsocket.rpc:rsocket-rpc-core:${rsocketRpcVersion}"
}
}
}