-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
44 lines (37 loc) · 862 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
37
38
39
40
41
42
43
44
buildscript {
ext {
protobufVersion = '0.8.15'
protocVersion = '3.14.0'
grpcVersion = '1.31.1'
springBootVersion = '[2.0.0.RELEASE,)'
nebulaVersion = '15.3.1'
spockVersion = '1.3-groovy-2.5'
lombokVersion = '1.18.+'
envoyProxyVersion = '0.4.1'
}
}
plugins {
id "nebula.release" version "${nebulaVersion}"
}
release {
defaultVersionStrategy = nebula.plugin.release.git.opinion.Strategies.SNAPSHOT
}
subprojects {
group = 'io.github.kenix'
apply plugin: 'groovy'
apply from: "$rootDir/gradle/config-tests.gradle"
repositories {
mavenCentral()
}
dependencies {
testImplementation 'org.codehaus.groovy:groovy-all:2.5.13'
testImplementation "org.spockframework:spock-spring:${spockVersion}"
}
}
apply plugin: 'idea'
idea {
module {
downloadJavadoc = true
downloadSources = true
}
}