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:
|
jdk:
|
||||||
- oraclejdk8
|
- oraclejdk8
|
||||||
|
- openjdk14
|
||||||
|
|
||||||
addons:
|
addons:
|
||||||
sonarcloud:
|
sonarcloud:
|
||||||
|
@ -13,6 +14,6 @@ before_install:
|
||||||
|
|
||||||
after_success:
|
after_success:
|
||||||
- |
|
- |
|
||||||
if [ "${TRAVIS_TEST_RESULT}" == 0 ]; then
|
if [ "${TRAVIS_TEST_RESULT}" == 0 ] && [ "$TRAVIS_JDK_VERSION" == "openjdk14" ]; then
|
||||||
./gradlew sonarqube
|
./gradlew sonarqube
|
||||||
fi
|
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 mavenScmCon = 'https://github.com/ethauvin/HttpStatus.git'
|
||||||
def mavenScmDevCon = 'git@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'
|
group = 'net.thauvin.erik.httpstatus'
|
||||||
|
|
||||||
mainClassName = 'net.thauvin.erik.httpstatus.Reasons'
|
mainClassName = 'net.thauvin.erik.httpstatus.Reasons'
|
||||||
|
@ -117,10 +113,6 @@ tasks.withType(Checkstyle) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
artifacts {
|
|
||||||
archives javadocJar, sourcesJar
|
|
||||||
}
|
|
||||||
|
|
||||||
publishing {
|
publishing {
|
||||||
publications {
|
publications {
|
||||||
mavenJava(MavenPublication) {
|
mavenJava(MavenPublication) {
|
||||||
|
@ -136,7 +128,6 @@ publishing {
|
||||||
license {
|
license {
|
||||||
name = mavenLicense
|
name = mavenLicense
|
||||||
url = mavenLicenseUrl
|
url = mavenLicenseUrl
|
||||||
distribution = 'repo'
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
developers {
|
developers {
|
||||||
|
@ -150,7 +141,7 @@ publishing {
|
||||||
scm {
|
scm {
|
||||||
connection = 'scm:git:' + mavenScmCon
|
connection = 'scm:git:' + mavenScmCon
|
||||||
developerConnection = 'scm:git:' + mavenScmDevCon
|
developerConnection = 'scm:git:' + mavenScmDevCon
|
||||||
url = mavenScmCon
|
url = mavenUrl
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,6 +3,6 @@
|
||||||
version.buildmeta=
|
version.buildmeta=
|
||||||
version.major=1
|
version.major=1
|
||||||
version.minor=0
|
version.minor=0
|
||||||
version.patch=5
|
version.patch=6
|
||||||
version.prerelease=
|
version.prerelease=
|
||||||
version.semver=1.0.5
|
version.semver=1.0.6
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue