From f9d17e5fc36eea93854995e2b35d7161c92b729b Mon Sep 17 00:00:00 2001
From: rschoene <rene.schoene@tu-dresden.de>
Date: Thu, 23 Jun 2022 16:23:23 +0200
Subject: [PATCH] 1.1.0

- include parts using lambda functions
- children of excluded children are now surveyed as well (previously excluded)
- disable doclint (JavaDoc linter)
---
 build.gradle | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/build.gradle b/build.gradle
index 2a3d63d..0379d15 100644
--- a/build.gradle
+++ b/build.gradle
@@ -4,3 +4,11 @@ plugins {
 }
 
 java.toolchain.languageVersion = JavaLanguageVersion.of(11)
+
+if (JavaVersion.current().isJava8Compatible()) {
+  allprojects {
+    tasks.withType(Javadoc) {
+      options.addStringOption('Xdoclint:none', '-quiet')
+    }
+  }
+}
-- 
GitLab