Version 1.1
This commit is contained in:
parent
5b47bf704e
commit
30f8b4c206
4 changed files with 6 additions and 5 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -54,4 +54,5 @@ atlassian-ide-plugin.xml
|
|||
# Editor-based Rest Client
|
||||
.idea/httpRequests
|
||||
|
||||
target
|
||||
local.properties
|
2
pom.xml
2
pom.xml
|
@ -4,7 +4,7 @@
|
|||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>net.thauvin.erik.httpstatus</groupId>
|
||||
<artifactId>httpstatus</artifactId>
|
||||
<version>1.1.0-SNAPSHOT</version>
|
||||
<version>1.1.0</version>
|
||||
<name>HttpStatus</name>
|
||||
<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>
|
||||
|
|
|
@ -53,7 +53,7 @@ public class HttpStatusBuild extends Project {
|
|||
public HttpStatusBuild() {
|
||||
pkg = "net.thauvin.erik.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 url = "https://github.com/ethauvin/HttpStatus";
|
||||
|
@ -84,7 +84,7 @@ public class HttpStatusBuild extends Project {
|
|||
publishOperation()
|
||||
.repository(version.isSnapshot() ? repository(SONATYPE_SNAPSHOTS_LEGACY.location())
|
||||
.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")))
|
||||
.info(new PublishInfo()
|
||||
.groupId(pkg)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue