This commit is contained in:
Erik C. Thauvin 2021-03-22 10:52:45 -07:00
parent d5005f18ea
commit bd47e55869
3 changed files with 5 additions and 13 deletions

View file

@ -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

View file

@ -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
} }
} }
} }

View file

@ -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