mirror of https://github.com/grpc/grpc-java.git
Fix the filesets to be checked by checkstyle.
This commit is contained in:
parent
111f6dd81e
commit
693a7d2846
|
|
@ -127,13 +127,11 @@ subprojects {
|
|||
}
|
||||
|
||||
checkstyleMain {
|
||||
source = fileTree(dir: "src", include: "**/*.java",
|
||||
excludes: ["${buildDir}/generated-sources", "**/TestServiceGrpc.java"])
|
||||
source = fileTree(dir: "src/main", include: "**/*.java")
|
||||
}
|
||||
|
||||
checkstyleTest {
|
||||
source = fileTree(dir: "test", include: "**/*.java",
|
||||
exclude: "${buildDir}/generated-sources")
|
||||
source = fileTree(dir: "src/test", include: "**/*.java")
|
||||
}
|
||||
|
||||
task javadocJar(type: Jar) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue