-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
36 lines (31 loc) · 822 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
plugins {
id 'com.gradle.build-scan' version '1.14'
id 'com.github.hierynomus.license' version '0.14.0'
id 'net.saliman.properties' version '1.4.6'
}
buildScan {
termsOfServiceUrl = 'https://gradle.com/terms-of-service'
termsOfServiceAgree = 'yes'
publishAlways()
}
allprojects {
apply plugin: 'com.github.hierynomus.license'
apply plugin: 'idea'
apply plugin: 'net.saliman.properties'
ext {
protobufVersion = '3.6.0'
proteusVersion = '0.8.6'
proteusSpringVersion = '0.3.4'
springbomVersion = 'Cairo-SR1'
}
repositories {
mavenLocal()
jcenter()
mavenCentral()
}
// Applies license headers to source files
license {
header rootProject.file('codequality/HEADER')
strictCheck true
}
}