Skip to content

Commit

Permalink
Merge branch 'release/4.4.9' into develop-4.4
Browse files Browse the repository at this point in the history
  • Loading branch information
guss77 committed Mar 31, 2024
2 parents e33661f + 82657de commit f197888
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,26 +15,26 @@ ported to all releases.

## Installation

Irked is available from the [Maven Central Repository](https://central.sonatype.com/artifact/tech.greenfield/irked-vertx/4.4.8).
Irked is available from the [Maven Central Repository](https://central.sonatype.com/artifact/tech.greenfield/irked-vertx/4.4.9).

If using Maven, add Irked as a dependency in your `pom.xml` file:

```xml
<dependency>
<groupId>tech.greenfield</groupId>
<artifactId>irked-vertx</artifactId>
<version>4.4.8</version>
<version>4.4.9</version>
</dependency>
```

For other build tools, see the Maven Central website for the syntax, but it generally
boils down to just using `tech.greenfield:irked-vertx:4.4.8` as the dependency string.
boils down to just using `tech.greenfield:irked-vertx:4.4.9` as the dependency string.

## Quick Start

You may want to take a look at the example application at [`src/example/java/tech/greenfield/vertx/irked/example/App.java`](src/example/java/tech/greenfield/vertx/irked/example/App.java) which shows how to create a new Vert.x Verticle using an Irked `Router` and a few very simple APIs. Then you may want to read the rest of this document for explanations, rationale and more complex API examples.

To run the example application, after compiling (for example, using `mvn compile`) run it with your full Vert.x 4.4.8 installation:
To run the example application, after compiling (for example, using `mvn compile`) run it with your full Vert.x 4.4.9 installation:

```
vertx run -cp target/classes/ tech.greenfield.vertx.irked.example.App
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>tech.greenfield</groupId>
<artifactId>irked-vertx</artifactId>
<version>4.4.9-SNAPSHOT</version>
<version>4.4.9</version>
<packaging>jar</packaging>
<name>irked-vertx</name>
<description>Opinionated framework for vertx-web route configuration and dispatch</description>
Expand Down

0 comments on commit f197888

Please sign in to comment.