forked from kmgowda/SBK
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
38 lines (30 loc) · 916 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
apply plugin: 'java-library'
apply plugin: "com.google.protobuf"
buildscript {
repositories {
mavenCentral()
}
dependencies {
// https://mvnrepository.com/artifact/com.google.protobuf/protobuf-gradle-plugin
classpath group: 'com.google.protobuf', name: 'protobuf-gradle-plugin', version: protobufGradlePlugin
}
}
apply from: "$rootDir/gradle/protobuf.gradle"
repositories {
mavenCentral()
}
dependencies {
api project(":sbk-api")
// https://mvnrepository.com/artifact/org.foundationdb/fdb-record-layer-core-pb3
api group: 'org.foundationdb', name: 'fdb-record-layer-core-pb3', version: '2.8.110.0'
}
generateJavadoc {
// follow the package path , it should not be folder path.
// but dont use . (dot) in the path
exclude 'io/sbk/FdbRecord/FdbRecordLayerProto.java'
}
/*
javadoc {
exclude 'io/sbk/FdbRecord/FdbRecordLayerProto.java'
}
*/