Skip to content

Commit 4bdcb6f

Browse files
committed
3.0.0-SNAPSHOT
1 parent 82090ed commit 4bdcb6f

3 files changed

Lines changed: 8 additions & 7 deletions

File tree

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ Include the following in your `bld` build file:
8686
repositories = List.of(MAVEN_CENTRAL, CENTRAL_SNAPSHOTS);
8787

8888
scope(compile).include(
89-
dependency("net.thauvin.erik.httpstatus","httpstatus", version(2, 0, 0))
89+
dependency("net.thauvin.erik.httpstatus", "httpstatus", version(3, 0, 0, "SNAPSHOT"))
9090
);
9191
```
9292

@@ -104,7 +104,7 @@ repositories {
104104
}
105105
106106
dependencies {
107-
implementation 'net.thauvin.erik.httpstatus:httpstatus:2.0.0'
107+
implementation 'net.thauvin.erik.httpstatus:httpstatus:3.0.0-SNAPSHOT'
108108
}
109109
```
110110

@@ -361,15 +361,15 @@ The reasons are defined in a [ResourceBundle](https://docs.oracle.com/en/java/ja
361361
You can query the reason phrase for status codes as follows:
362362

363363
```console
364-
> java -jar httpstatus-2.0.0.jar 404 500
364+
> java -jar httpstatus-3.0.0.jar 404 500
365365
404: Not Found
366366
500: Internal Server Error
367367
```
368368

369369
If no status code is specified, all will be printed:
370370

371371
```console
372-
> java -jar httpstatus-2.0.0.jar
372+
> java -jar httpstatus-3.0.0.jar
373373
100: Continue
374374
101: Switching Protocols
375375
102: Processing
@@ -389,7 +389,7 @@ If no status code is specified, all will be printed:
389389
You can also print status codes by [classes](https://datatracker.ietf.org/doc/html/rfc7231#section-6):
390390

391391
```console
392-
> java -jar httpstatus-2.0.0.jar 2xx
392+
> java -jar httpstatus-3.0.0.jar 2xx
393393
200: OK
394394
201: Created
395395
202: Accepted

src/bld/java/net/thauvin/erik/httpstatus/HttpStatusBuild.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ public class HttpStatusBuild extends Project {
6262
public HttpStatusBuild() {
6363
pkg = "net.thauvin.erik.httpstatus";
6464
name = "HttpStatus";
65-
version = version(2, 0, 1, "SNAPSHOT");
65+
version = version(3, 0, 0, "SNAPSHOT");
6666

6767
var description = "HTTP Status Codes & JSP Tag Library";
6868
var url = "https://github.com/ethauvin/HttpStatus";
@@ -203,4 +203,4 @@ private void pomRoot() throws FileUtilsErrorException {
203203
PomBuilder.generateInto(publishOperation().fromProject(this).info(), dependencies(),
204204
new File("pom.xml"));
205205
}
206-
}
206+
}

src/test/java/net/thauvin/erik/httpstatus/taglibs/MockJspWriter.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@
3434

3535
import jakarta.servlet.jsp.JspWriter;
3636
import org.jspecify.annotations.NonNull;
37+
3738
public class MockJspWriter extends JspWriter {
3839

3940
@SuppressWarnings("PMD.AvoidStringBufferField")

0 commit comments

Comments
 (0)