diff --git a/build.gradle b/build.gradle
index 16146cfc23d059ef85dba0dc6b7fa2a80d3d4462..1b8227b88f2cbbb4f5b232d99e650a92a977b480 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 0000000000000000000000000000000000000000..9f6dbd4dc9e3a5be09569e965d272faacc94892c
--- /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");
+
+	}
+
+}