diff options
author | Dominik Stadler <centic@apache.org> | 2016-12-28 19:47:40 +0000 |
---|---|---|
committer | Dominik Stadler <centic@apache.org> | 2016-12-28 19:47:40 +0000 |
commit | d9596e3f806a2d06815269daf8e4528341491e9b (patch) | |
tree | 775deb337fbf49e47ce7168662a767cddada2e4b | |
parent | df66760bfc55dabf0bc273f5f54bda96ba0efe0e (diff) | |
download | poi-d9596e3f806a2d06815269daf8e4528341491e9b.tar.gz poi-d9596e3f806a2d06815269daf8e4528341491e9b.zip |
Disable Sonar in Gradle build for now, it requires Java 8, but we should still be able to compile with Java 7
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1776317 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | build.gradle | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/build.gradle b/build.gradle index 4fbf7e8656..4a884b65e4 100644 --- a/build.gradle +++ b/build.gradle @@ -24,9 +24,11 @@ buildscript { } } +/* We cannot add this here as the Sonar-plugin requires Java 8, but + * we want to at least keep Java 7 compatibility for building POI via Gradle for now plugins { id "org.sonarqube" version "2.2.1" -} +}*/ // For help converting an Ant build to a Gradle build, see // https://docs.gradle.org/current/userguide/ant.html |