22
33[ ![ License (3-Clause BSD)] ( https://img.shields.io/badge/license-BSD%203--Clause-blue.svg?style=flat-square )] ( http://opensource.org/licenses/BSD-3-Clause )
44[ ![ Java] ( https://img.shields.io/badge/java-17%2B-blue )] ( https://www.oracle.com/java/technologies/javase/jdk17-archive-downloads.html )
5- [ ![ bld] ( https://img.shields.io/badge/2.2.1 -FA9052?label=bld&labelColor=2392FF )] ( https://rife2.com/bld )
5+ [ ![ bld] ( https://img.shields.io/badge/2.3.0 -FA9052?label=bld&labelColor=2392FF )] ( https://rife2.com/bld )
66[ ![ Release] ( https://img.shields.io/github/release/ethauvin/httpstatus.svg )] ( https://github.com/ethauvin/httpstatus/releases/latest )
7- [ ![ Sonatype Nexus (Snapshots)] ( https://img.shields.io/nexus/s/net.thauvin.erik.httpstatus/httpstatus.svg?label=sanpshot&server=https%3A%2F%2Foss.sonatype.org )] ( https://oss.sonatype.org/content/repositories/snapshots/net/thauvin/erik/httpstatus/httpstatus/ )
87[ ![ Maven Central] ( https://img.shields.io/maven-central/v/net.thauvin.erik.httpstatus/httpstatus.svg?color=blue )] ( https://central.sonatype.com/artifact/net.thauvin.erik.httpstatus/httpstatus )
8+ [ ![ Maven metadata URL] ( https://img.shields.io/maven-metadata/v?metadataUrl=https%3A%2F%2Fcentral.sonatype.com%2Frepository%2Fmaven-snapshots%2Fnet%2Fthauvin%2Ferik%2Fhttpstatus%2Fhttpstatus%2Fmaven-metadata.xml&label=snapshot )] ( https://github.com/ethauvin/HttpStatus/packages/2260867/versions )
99
1010[ ![ Known Vulnerabilities] ( https://snyk.io/test/github/ethauvin/httpstatus/badge.svg?targetFile=pom.xml )] ( https://snyk.io/test/github/ethauvin/httpstatus?targetFile=pom.xml )
1111[ ![ Quality Gate Status] ( https://sonarcloud.io/api/project_badges/measure?project=ethauvin_HttpStatus&metric=alert_status )] ( https://sonarcloud.io/summary/new_code?id=ethauvin_HttpStatus )
@@ -18,8 +18,8 @@ A simple [JSP](http://www.oracle.com/technetwork/java/javaee/jsp/index.html) Tag
1818
1919- [ Examples] ( #examples )
2020- [ Usage] ( #usage )
21- - [ Gradle] ( #gradle )
2221 - [ bld] ( #bld )
22+ - [ Gradle] ( #gradle )
2323 - [ Maven] ( #maven )
2424- [ JSP Tags] ( #jsp-tags )
2525 - [ hs: cause ] ( #hscause )
@@ -62,12 +62,28 @@ Not Implemented
6262
6363## Usage
6464
65+ ### [ bld] ( https://rife2.com/bld )
66+
67+ Include the following in your ` bld ` build file:
68+
69+ ``` java
70+ repositories = List . of(MAVEN_CENTRAL , CENTRAL_SNAPSHOTS );
71+
72+ scope(compile). include(
73+ dependency(" net.thauvin.erik.httpstatus" ," httpstatus" , version(1 , 1 , 1 ))
74+ );
75+ ```
76+
6577### [ Gradle] ( https://gradle.org/ )
6678
6779Include the following in your ` build.gradle ` file:
6880
6981``` gradle
7082repositories {
83+ maven {
84+ name = 'Central Portal Snapshots'
85+ url = 'https://central.sonatype.com/repository/maven-snapshots/'
86+ }
7187 mavenCentral()
7288}
7389
@@ -76,27 +92,9 @@ dependencies {
7692}
7793```
7894
79- ### [ bld] ( https://rife2.com/bld )
80-
81- Include the following in your ` bld ` build file:
82-
83- ``` java
84- scope(compile). include(
85- dependency(" net.thauvin.erik.httpstatus" ," httpstatus" , version(1 , 1 , 0 ))
86- );
87- ```
88-
89- ### [ Maven] ( http://maven.apache.org/ )
90-
91- As a ` Maven ` artifact:
95+ ### Maven
9296
93- ``` xml
94- <dependency >
95- <groupId >net.thauvin.erik.httpstatus</groupId >
96- <artifactId >httpstatus</artifactId >
97- <version >1.1.1</version >
98- </dependency >
99- ```
97+ Instructions for using with Maven, Ivy, etc. can be found on [ Maven Central] ( https://central.sonatype.com/artifact/net.thauvin.erik.httpstatus/httpstatus ) .
10098
10199## JSP Tags
102100
0 commit comments