Skip to content
Snippets Groups Projects
Commit b740ce01 authored by erbel's avatar erbel
Browse files

Making Javadoc Happy

parent bf7c500f
No related branches found
No related tags found
No related merge requests found
Pipeline #82975 passed
......@@ -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 {
......
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");
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment