aboutsummaryrefslogtreecommitdiffstats
path: root/examples/build.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'examples/build.gradle')
-rw-r--r--examples/build.gradle16
1 files changed, 0 insertions, 16 deletions
diff --git a/examples/build.gradle b/examples/build.gradle
index 163b0b80..b42e8e0f 100644
--- a/examples/build.gradle
+++ b/examples/build.gradle
@@ -14,7 +14,6 @@ buildscript {
}
}
-apply plugin: 'checkstyle'
apply plugin: 'idea'
apply plugin: 'java'
apply plugin: 'com.google.protobuf'
@@ -35,21 +34,6 @@ def opencensusVersion = "0.12.2" // LATEST_OPENCENSUS_RELEASE_VERSION
def grpcVersion = "1.9.0" // CURRENT_GRPC_VERSION
def prometheusVersion = "0.3.0"
-checkstyle {
- configFile = file("$rootDir/../buildscripts/checkstyle.xml")
- toolVersion = "8.0"
- ignoreFailures = false
- if (rootProject.hasProperty("checkstyle.ignoreFailures")) {
- ignoreFailures = rootProject.properties["checkstyle.ignoreFailures"].toBoolean()
- }
- configProperties["rootDir"] = file("$rootDir/../")
-}
-
-checkstyleMain {
- // This skips proto generated files beucasue they are in gen_gradle/src/main/**
- source = fileTree(dir: "src/main", include: "**/*.java")
-}
-
// Google formatter works only on java8.
if (JavaVersion.current().isJava8Compatible()) {
googleJavaFormat {