Moved from Gradle to bld
This commit is contained in:
parent
84cfe6098d
commit
68975a497b
58 changed files with 632 additions and 2393 deletions
18
README.md
18
README.md
|
@ -1,8 +1,14 @@
|
|||
# HttpStatus JSP Tag Library
|
||||
|
||||
[](https://github.com/ethauvin/httpstatus/releases/latest) [](https://search.maven.org/search?q=g:%22net.thauvin.erik.httpstatus%22%20AND%20a:%22httpstatus%22)
|
||||
[](http://opensource.org/licenses/BSD-3-Clause) [](https://snyk.io/test/github/ethauvin/httpstatus?targetFile=build.gradle) [](https://sonarcloud.io/dashboard?id=ethauvin_HttpStatus)
|
||||
[](https://github.com/ethauvin/httpstatus/actions/workflows/gradle.yml) [](https://ci.appveyor.com/project/ethauvin/httpstatus) [](https://circleci.com/gh/ethauvin/HttpStatus/tree/master)
|
||||
[](https://www.oracle.com/java/technologies/javase/jdk17-archive-downloads.html)
|
||||
[](https://github.com/ethauvin/httpstatus/releases/latest)
|
||||
[](https://search.maven.org/search?q=g:%22net.thauvin.erik.httpstatus%22%20AND%20a:%22httpstatus%22)
|
||||

|
||||
[](http://opensource.org/licenses/BSD-3-Clause)
|
||||
[](https://snyk.io/test/github/ethauvin/httpstatus?targetFile=pom.xml)
|
||||
[](https://github.com/ethauvin/httpstatus/actions/workflows/bld.yml)
|
||||
[](https://ci.appveyor.com/project/ethauvin/httpstatus)
|
||||
[](https://circleci.com/gh/ethauvin/HttpStatus/tree/master)
|
||||
|
||||
|
||||
A simple [JSP](http://www.oracle.com/technetwork/java/javaee/jsp/index.html) Tag Library to display the [code](#hscode), [reason](#hsreason), [cause](#hscode) and/or [message](#hsmessage) for [HTTP status codes](http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html) in JSP error pages.
|
||||
|
@ -36,6 +42,10 @@ would display on a [501 status code](http://www.w3.org/Protocols/rfc2616/rfc2616
|
|||
Include the following in your `build.gradle` file:
|
||||
|
||||
```gradle
|
||||
repositories {
|
||||
mavenCentral()
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation 'net.thauvin.erik.httpstatus:httpstatus:1.1.0'
|
||||
}
|
||||
|
@ -150,7 +160,7 @@ Method | Description
|
|||
|
||||
## Reasons
|
||||
|
||||
The reasons are defined in a [ResourceBundle](http://docs.oracle.com/javase/8/docs/api/java/util/ResourceBundle.html) properties as follows:
|
||||
The reasons are defined in a [ResourceBundle](https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/util/ResourceBundle.html) properties as follows:
|
||||
|
||||
Status Code | Reason
|
||||
----------- | -----------------------------------
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue