1

add style guide dependencies

This commit is contained in:
XXNitram
2020-03-03 16:05:37 +01:00
parent ad64cefb4d
commit a4ceb11bca

View File

@ -11,6 +11,7 @@ spotbugs{
reportLevel = "high"
toolVersion = '4.0.0-RC1'
}
tasks.withType(com.github.spotbugs.SpotBugsTask) {
reports {
html {
@ -44,6 +45,12 @@ configurations {
repositories {
mavenCentral()
maven {
url="https://s3.cs.hhu.de/public/mops/"
metadataSources {
artifact()
}
}
}
dependencies {
@ -60,6 +67,7 @@ dependencies {
exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
}
testImplementation 'org.springframework.security:spring-security-test'
implementation "mops:styleguide:<1.0.7>"
}
test {