Cleanup.
This commit is contained in:
parent
d5005f18ea
commit
bd47e55869
3 changed files with 5 additions and 13 deletions
|
@ -3,6 +3,7 @@ dist: trusty
|
|||
|
||||
jdk:
|
||||
- oraclejdk8
|
||||
- openjdk14
|
||||
|
||||
addons:
|
||||
sonarcloud:
|
||||
|
@ -13,6 +14,6 @@ before_install:
|
|||
|
||||
after_success:
|
||||
- |
|
||||
if [ "${TRAVIS_TEST_RESULT}" == 0 ]; then
|
||||
if [ "${TRAVIS_TEST_RESULT}" == 0 ] && [ "$TRAVIS_JDK_VERSION" == "openjdk14" ]; then
|
||||
./gradlew sonarqube
|
||||
fi
|
||||
|
|
11
build.gradle
11
build.gradle
|
@ -28,10 +28,6 @@ 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'
|
||||
|
||||
def pkgLicenses = ['BSD 3-Clause']
|
||||
def pkgIssueTrackerUrl = mavenUrl + '/issues'
|
||||
def pkgLabels = ['jsp', 'tag library', 'http', 'status code', 'java']
|
||||
|
||||
group = 'net.thauvin.erik.httpstatus'
|
||||
|
||||
mainClassName = 'net.thauvin.erik.httpstatus.Reasons'
|
||||
|
@ -117,10 +113,6 @@ tasks.withType(Checkstyle) {
|
|||
}
|
||||
}
|
||||
|
||||
artifacts {
|
||||
archives javadocJar, sourcesJar
|
||||
}
|
||||
|
||||
publishing {
|
||||
publications {
|
||||
mavenJava(MavenPublication) {
|
||||
|
@ -136,7 +128,6 @@ publishing {
|
|||
license {
|
||||
name = mavenLicense
|
||||
url = mavenLicenseUrl
|
||||
distribution = 'repo'
|
||||
}
|
||||
}
|
||||
developers {
|
||||
|
@ -150,7 +141,7 @@ publishing {
|
|||
scm {
|
||||
connection = 'scm:git:' + mavenScmCon
|
||||
developerConnection = 'scm:git:' + mavenScmDevCon
|
||||
url = mavenScmCon
|
||||
url = mavenUrl
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -3,6 +3,6 @@
|
|||
version.buildmeta=
|
||||
version.major=1
|
||||
version.minor=0
|
||||
version.patch=5
|
||||
version.patch=6
|
||||
version.prerelease=
|
||||
version.semver=1.0.5
|
||||
version.semver=1.0.6
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue