forked from LogNet/grpc-spring-boot-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
51 lines (34 loc) · 1.15 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
apply plugin: 'idea'
buildscript {
ext {
springBootVersion = '1.4.2.RELEASE'
grpcVersion = '1.0.2'
}
repositories {
mavenCentral()
maven { url 'http://repo.spring.io/plugins-release' }
maven { url "https://plugins.gradle.org/m2/"}
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
classpath "com.jfrog.bintray.gradle:gradle-bintray-plugin:1.5"
classpath 'com.google.protobuf:protobuf-gradle-plugin:0.8.0'
classpath group: 'com.netflix.nebula', name: 'nebula-project-plugin', version: '2.2.1'
classpath group: 'com.netflix.nebula', name: 'nebula-interactive', version: '2.0.+'
classpath "org.jfrog.buildinfo:build-info-extractor-gradle:4.0.0"
}
}
subprojects {
apply plugin: 'idea'
apply plugin: 'java'
apply plugin: 'nebula-interactive'
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
mavenCentral()
maven { url "https://repo.spring.io/milestone" }
}
dependencies{
compileOnly('org.projectlombok:lombok:1.16.6')
}
}