Integration CI mit SonarQube

This commit is contained in:
Marvin Scham
2023-05-19 23:11:37 +00:00
parent 605f4e6653
commit 6f9edee6ce
11 changed files with 218 additions and 144 deletions

View File

@@ -0,0 +1,16 @@
package de.rwu.easydrop.demo;
/**
* Demo-Class.
*/
public final class DemoClass {
/**
* Demo-Method inverting a boolean.
*
* @param bool Input Boolean
* @return Inverted Boolean
*/
public boolean invertBool(final boolean bool) {
return !bool;
}
}

View File

@@ -0,0 +1,6 @@
/**
* Dieses Paket beinhaltet ist zu Demo-Zwecken.
*
* @since 0.1-SNAPSHOT
*/
package de.rwu.easydrop.demo;