Skip to content
Snippets Groups Projects
Commit 05da716d authored by Clayton, Brandon Scott's avatar Clayton, Brandon Scott
Browse files

add bug and format check

parent d7f6d20e
No related branches found
No related tags found
1 merge request!24Bug and Style Checker
...@@ -5,8 +5,15 @@ plugins { ...@@ -5,8 +5,15 @@ plugins {
id "net.ltgt.apt-eclipse" version "0.21" id "net.ltgt.apt-eclipse" version "0.21"
id "eclipse-wtp" id "eclipse-wtp"
id "jacoco" id "jacoco"
id "com.star-zero.gradle.githook" version "1.2.0"
id "com.github.spotbugs" version "3.0.0"
id "com.diffplug.gradle.spotless" version "3.27.1"
} }
apply from: project(":nshmp-lib").file("gradle/git-hooks.gradle")
apply from: project(":nshmp-lib").file("gradle/spotbugs.gradle")
apply from: project(":nshmp-lib").file("gradle/spotless.gradle")
sourceCompatibility = 1.8 sourceCompatibility = 1.8
compileJava.options.encoding = "UTF-8" compileJava.options.encoding = "UTF-8"
...@@ -28,6 +35,7 @@ dependencies { ...@@ -28,6 +35,7 @@ dependencies {
implementation "io.micronaut:micronaut-runtime" implementation "io.micronaut:micronaut-runtime"
implementation "io.micronaut:micronaut-http-server-netty" implementation "io.micronaut:micronaut-http-server-netty"
implementation "com.fasterxml.jackson.module:jackson-module-parameter-names:2.9.0" implementation "com.fasterxml.jackson.module:jackson-module-parameter-names:2.9.0"
runtimeOnly "io.micronaut:micronaut-runtime-osx"
runtimeOnly "ch.qos.logback:logback-classic:1.2.3" runtimeOnly "ch.qos.logback:logback-classic:1.2.3"
// junit // junit
...@@ -36,6 +44,7 @@ dependencies { ...@@ -36,6 +44,7 @@ dependencies {
testImplementation "org.junit.jupiter:junit-jupiter:5.5.2" testImplementation "org.junit.jupiter:junit-jupiter:5.5.2"
testImplementation "org.junit.jupiter:junit-jupiter-api" testImplementation "org.junit.jupiter:junit-jupiter-api"
testImplementation "io.micronaut.test:micronaut-test-junit5" testImplementation "io.micronaut.test:micronaut-test-junit5"
testImplementation "io.micronaut.test:micronaut-test-spock"
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine" testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine"
} }
...@@ -89,3 +98,12 @@ tasks.withType(JavaCompile){ ...@@ -89,3 +98,12 @@ tasks.withType(JavaCompile){
options.encoding = "UTF-8" options.encoding = "UTF-8"
options.compilerArgs.add("-parameters") options.compilerArgs.add("-parameters")
} }
/* Add HTML reports to SpotBugs */
tasks.withType(com.github.spotbugs.SpotBugsTask) {
ignoreFailures = false // TODO remove when nshmp-lib is updated
reports {
xml.enabled = false
html.enabled = true
}
}
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