Version 1.1

This commit is contained in:
Erik C. Thauvin 2023-09-29 04:27:27 -07:00
parent 5b47bf704e
commit 30f8b4c206
4 changed files with 6 additions and 5 deletions

3
.gitignore vendored
View file

@ -54,4 +54,5 @@ atlassian-ide-plugin.xml
# Editor-based Rest Client # Editor-based Rest Client
.idea/httpRequests .idea/httpRequests
local.properties target
local.properties

View file

@ -2,6 +2,6 @@ bld.downloadExtensionJavadoc=false
bld.downloadExtensionSources=true bld.downloadExtensionSources=true
bld.extension-pmd=com.uwyn.rife2:bld-pmd:0.9.2 bld.extension-pmd=com.uwyn.rife2:bld-pmd:0.9.2
bld.extension-jacoco=com.uwyn.rife2:bld-jacoco-report:0.9.1-SNAPSHOT bld.extension-jacoco=com.uwyn.rife2:bld-jacoco-report:0.9.1-SNAPSHOT
bld.repositories=MAVEN_LOCAL, RIFE2_SNAPSHOTS,RIFE2_RELEASES,MAVEN_CENTRAL bld.repositories=MAVEN_LOCAL,RIFE2_SNAPSHOTS,RIFE2_RELEASES,MAVEN_CENTRAL
bld.downloadLocation= bld.downloadLocation=
bld.version=1.7.2 bld.version=1.7.2

View file

@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<groupId>net.thauvin.erik.httpstatus</groupId> <groupId>net.thauvin.erik.httpstatus</groupId>
<artifactId>httpstatus</artifactId> <artifactId>httpstatus</artifactId>
<version>1.1.0-SNAPSHOT</version> <version>1.1.0</version>
<name>HttpStatus</name> <name>HttpStatus</name>
<description>Tag library to display the code, reason, cause and/or message for HTTP status codes in JSP error pages</description> <description>Tag library to display the code, reason, cause and/or message for HTTP status codes in JSP error pages</description>
<url>https://github.com/ethauvin/HttpStatus</url> <url>https://github.com/ethauvin/HttpStatus</url>

View file

@ -53,7 +53,7 @@ public class HttpStatusBuild extends Project {
public HttpStatusBuild() { public HttpStatusBuild() {
pkg = "net.thauvin.erik.httpstatus"; pkg = "net.thauvin.erik.httpstatus";
name = "HttpStatus"; name = "HttpStatus";
version = version(1, 1, 0, "SNAPSHOT"); version = version(1, 1, 0);
var description = "Tag library to display the code, reason, cause and/or message for HTTP status codes in JSP error pages"; var description = "Tag library to display the code, reason, cause and/or message for HTTP status codes in JSP error pages";
var url = "https://github.com/ethauvin/HttpStatus"; var url = "https://github.com/ethauvin/HttpStatus";
@ -84,7 +84,7 @@ public class HttpStatusBuild extends Project {
publishOperation() publishOperation()
.repository(version.isSnapshot() ? repository(SONATYPE_SNAPSHOTS_LEGACY.location()) .repository(version.isSnapshot() ? repository(SONATYPE_SNAPSHOTS_LEGACY.location())
.withCredentials(property("sonatype.user"), property("sonatype.password")) .withCredentials(property("sonatype.user"), property("sonatype.password"))
: repository(SONATYPE_RELEASES.location()) : repository("https://oss.sonatype.org/service/local/staging/deploy/maven2/")
.withCredentials(property("sonatype.user"), property("sonatype.password"))) .withCredentials(property("sonatype.user"), property("sonatype.password")))
.info(new PublishInfo() .info(new PublishInfo()
.groupId(pkg) .groupId(pkg)