24
build.gradle
24
build.gradle
@ -2,6 +2,30 @@ plugins {
|
|||||||
id 'org.springframework.boot' version '2.2.5.RELEASE'
|
id 'org.springframework.boot' version '2.2.5.RELEASE'
|
||||||
id 'io.spring.dependency-management' version '1.0.9.RELEASE'
|
id 'io.spring.dependency-management' version '1.0.9.RELEASE'
|
||||||
id 'java'
|
id 'java'
|
||||||
|
id 'com.github.spotbugs' version "3.0.0"
|
||||||
|
id 'checkstyle'
|
||||||
|
}
|
||||||
|
spotbugs{
|
||||||
|
ignoreFailures = true
|
||||||
|
effort = "max"
|
||||||
|
reportLevel = "high"
|
||||||
|
toolVersion = '4.0.0-RC1'
|
||||||
|
}
|
||||||
|
tasks.withType(com.github.spotbugs.SpotBugsTask) {
|
||||||
|
reports {
|
||||||
|
html {
|
||||||
|
enabled = true
|
||||||
|
}
|
||||||
|
xml {
|
||||||
|
enabled = false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
checkstyle {
|
||||||
|
toolVersion = "8.28"
|
||||||
|
configFile = file("${rootDir}/config/checkstyle/checkstyle.xml")
|
||||||
|
ignoreFailures = true
|
||||||
}
|
}
|
||||||
|
|
||||||
group = 'mops'
|
group = 'mops'
|
||||||
|
|||||||
@ -93,7 +93,7 @@
|
|||||||
<property name="option" value="alone"/>
|
<property name="option" value="alone"/>
|
||||||
<property name="tokens"
|
<property name="tokens"
|
||||||
value="CLASS_DEF, METHOD_DEF, CTOR_DEF, LITERAL_FOR, LITERAL_WHILE, STATIC_INIT,
|
value="CLASS_DEF, METHOD_DEF, CTOR_DEF, LITERAL_FOR, LITERAL_WHILE, STATIC_INIT,
|
||||||
INSTANCE_INIT, ANNOTATION_DEF, ENUM_DEF"/>
|
INSTANCE_INIT, ANNOTATION_DEF"/>
|
||||||
</module>
|
</module>
|
||||||
<module name="SuppressionXpathSingleFilter">
|
<module name="SuppressionXpathSingleFilter">
|
||||||
<!-- suppresion is required till https://github.com/checkstyle/checkstyle/issues/7541 -->
|
<!-- suppresion is required till https://github.com/checkstyle/checkstyle/issues/7541 -->
|
||||||
|
|||||||
5
gradle/wrapper/gradle-wrapper.properties
vendored
5
gradle/wrapper/gradle-wrapper.properties
vendored
@ -1,5 +1,6 @@
|
|||||||
|
#Tue Mar 03 14:24:58 CET 2020
|
||||||
|
distributionUrl=https\://services.gradle.org/distributions/gradle-6.0.1-all.zip
|
||||||
distributionBase=GRADLE_USER_HOME
|
distributionBase=GRADLE_USER_HOME
|
||||||
distributionPath=wrapper/dists
|
distributionPath=wrapper/dists
|
||||||
distributionUrl=https\://services.gradle.org/distributions/gradle-6.0.1-bin.zip
|
|
||||||
zipStoreBase=GRADLE_USER_HOME
|
|
||||||
zipStorePath=wrapper/dists
|
zipStorePath=wrapper/dists
|
||||||
|
zipStoreBase=GRADLE_USER_HOME
|
||||||
|
|||||||
@ -5,9 +5,7 @@ import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|||||||
|
|
||||||
@SpringBootApplication
|
@SpringBootApplication
|
||||||
public class Gruppen2Application {
|
public class Gruppen2Application {
|
||||||
|
public static void main(String[] args) {
|
||||||
public static void main(String[] args) {
|
SpringApplication.run(Gruppen2Application.class, args);
|
||||||
SpringApplication.run(Gruppen2Application.class, args);
|
}
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user