Cleaned up and updated dependencies

This commit is contained in:
Erik C. Thauvin 2022-04-24 00:49:11 -07:00
parent 8ed5bc951f
commit c4edb4fd1f
20 changed files with 80 additions and 803 deletions

View file

@ -17,15 +17,15 @@ import org.apache.tools.ant.taskdefs.condition.Os
defaultTasks 'deploy'
def deployDir = 'deploy'
final def deployDir = 'deploy'
def mavenName = 'HttpStatus'
def mavenDescription = 'HttpStatus JSP Tag Library'
def mavenUrl = 'https://github.com/ethauvin/HttpStatus'
def mavenLicense = 'The BSD 3-Clause License'
def mavenLicenseUrl = 'http://opensource.org/licenses/BSD-3-Clause'
def mavenScmCon = 'https://github.com/ethauvin/HttpStatus.git'
def mavenScmDevCon = 'git@github.com:ethauvin/HttpStatus.git'
final def mavenName = 'HttpStatus'
final def mavenDescription = 'HttpStatus JSP Tag Library'
final def mavenUrl = 'https://github.com/ethauvin/HttpStatus'
final def mavenLicense = 'The BSD 3-Clause License'
final def mavenLicenseUrl = 'http://opensource.org/licenses/BSD-3-Clause'
final def mavenScmCon = 'https://github.com/ethauvin/HttpStatus.git'
final def mavenScmDevCon = 'git@github.com:ethauvin/HttpStatus.git'
group = 'net.thauvin.erik.httpstatus'
@ -49,7 +49,7 @@ dependencies {
compileOnly 'javax.servlet.jsp:jsp-api:2.2.1-b03'
compileOnly 'javax.el:javax.el-api:3.0.1-b06'
spotbugsPlugins 'com.h3xstream.findsecbugs:findsecbugs-plugin:1.11.0'
spotbugsPlugins 'com.h3xstream.findsecbugs:findsecbugs-plugin:1.12.0'
spotbugsPlugins 'com.mebigfatguy.sb-contrib:sb-contrib:7.4.7'
compileOnly "com.github.spotbugs:spotbugs-annotations:$versions.spotbugs"
@ -115,8 +115,8 @@ pmd {
tasks.withType(SpotBugsTask) {
reports {
xml.enabled = false
html.enabled = true
xml.required = false
html.required = true
}
}
@ -196,7 +196,7 @@ task release {
task pandoc(type: Exec) {
group = 'Documentation'
def pandoc_args = ['--from', 'gfm',
final def pandoc_args = ['--from', 'gfm',
'--to', 'html5',
'--metadata', "pagetitle=$mavenDescription",
'-s',
@ -216,7 +216,7 @@ task pandoc(type: Exec) {
}
jacoco {
toolVersion = '0.8.8-SNAPSHOT'
toolVersion = '0.8.9-SNAPSHOT'
}
jacocoTestReport {