-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
51 lines (43 loc) · 1.54 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
plugins {
id "com.gradle.build-scan" version "3.0"
id "com.github.hierynomus.license" version "0.14.0"
id "net.saliman.properties" version "1.4.6"
id "io.spring.dependency-management" version "1.0.7.RELEASE" apply false
id "com.google.protobuf" version "0.8.10" apply false
}
buildScan {
termsOfServiceUrl = "https://gradle.com/terms-of-service"
termsOfServiceAgree = "yes"
publishAlways()
}
allprojects {
apply plugin: 'idea'
apply plugin: 'com.github.hierynomus.license'
apply plugin: 'net.saliman.properties'
repositories {
mavenCentral()
jcenter()
}
license {
header rootProject.file('codequality/LICENSE_HEADER')
strictCheck true
excludes([ "**/*.json", "**/*.html", "**/*.js", "**/*.css", "**/*.map" ])
}
}
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.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}"
}
}
}