From b740ce01b9eab8a760c8bde28c56641cb04c38ab Mon Sep 17 00:00:00 2001 From: erbel <johannes.erbel@cs.uni-goettingen.de> Date: Mon, 29 Oct 2018 14:56:44 +0100 Subject: [PATCH] Making Javadoc Happy --- build.gradle | 6 +++--- .../java/de/ugoe/cs/rwm/mocci/ExampleClass.java | 17 +++++++++++++++++ 2 files changed, 20 insertions(+), 3 deletions(-) create mode 100644 src/main/java/de/ugoe/cs/rwm/mocci/ExampleClass.java diff --git a/build.gradle b/build.gradle index 16146cf..1b8227b 100644 --- a/build.gradle +++ b/build.gradle @@ -97,10 +97,10 @@ configurations.all { javadoc { source = sourceSets.main.allJava classpath = configurations.compile - failOnError = false + failOnError = true } test { - exclude 'de/ugoe/cs/rwm/docci/live/**' + exclude 'de/ugoe/cs/rwm/mocci/live/**' testLogging.showStandardStreams = true testLogging { exceptionFormat = 'full' @@ -123,7 +123,7 @@ jacocoTestReport { findbugs { sourceSets = [sourceSets.main] - ignoreFailures = true + ignoreFailures = false } checkstyle { diff --git a/src/main/java/de/ugoe/cs/rwm/mocci/ExampleClass.java b/src/main/java/de/ugoe/cs/rwm/mocci/ExampleClass.java new file mode 100644 index 0000000..9f6dbd4 --- /dev/null +++ b/src/main/java/de/ugoe/cs/rwm/mocci/ExampleClass.java @@ -0,0 +1,17 @@ +package de.ugoe.cs.rwm.mocci; + +/**Making javadoc happy. + * @author erbel + * + */ +public class ExampleClass { + + /**Making javadoc happy. + * @param args Making javadoc happy. + */ + public static void main(String[] args) { + System.out.println("Hello world"); + + } + +} -- GitLab