Skip to content

Commit

Permalink
Merge pull request #358 from NaluKit/snapshot
Browse files Browse the repository at this point in the history
Snapshot
  • Loading branch information
FrankHossfeld authored Oct 13, 2024
2 parents b4e6439 + f0ad62a commit bc092c6
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ jobs:
exit 1
if: ${{ steps.version-check.outputs.already-exists == 'true' }}
- name: Release
uses: softprops/action-gh-release@v1
uses: softprops/action-gh-release@v2
with:
body: Relase of version ${{ steps.project.outputs.version }}
tag_name: ${{ steps.project.outputs.version }}
Expand Down
36 changes: 28 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
![GWT3/J2CL compatible](https://img.shields.io/badge/GWT3/J2CL-compatible-brightgreen.svg)
[![Join the chat at https://gitter.im/Nalukit42/Lobby](https://badges.gitter.im/Nalukit42/Lobby.svg)](https://gitter.im/Nalukit42/Lobby?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
[![Maven Central](https://img.shields.io/maven-central/v/com.github.nalukit/nalu.svg?colorB=44cc11)](https://central.sonatype.com/artifact/com.github.nalukit/nalu)
[![Build & Deploy](https://github.com/NaluKit/nalu/actions/workflows/build.yaml/badge.svg?branch=dev)](https://github.com/NaluKit/nalu/actions/workflows/build.yaml)
[![Build & Deploy](https://github.com/NaluKit/nalu/actions/workflows/build.yaml/badge.svg?branch=main)](https://github.com/NaluKit/nalu/actions/workflows/build.yaml)


Nalu is a tiny framework that helps you to create GWT based applications quite easily. Using the HTML 5 history for routing and navigation, Nalu supports the browser's back-, forward-, and reload-button by default and without any need to implement anything.
Expand Down Expand Up @@ -136,12 +136,12 @@ To use Nalu add the following dependencies to your pom:
<dependency>
<groupId>com.github.nalukit</groupId>
<artifactId>nalu</artifactId>
<version>2.20.0</version>
<version>2.20.1</version>
</dependency>
<dependency>
<groupId>com.github.nalukit</groupId>
<artifactId>nalu-processor</artifactId>
<version>2.20.0</version>
<version>2.20.1</version>
<scope>provided</scope>
</dependency>
```
Expand All @@ -156,6 +156,7 @@ If the project uses a widget set based on **Elemental2**, **Elemento** or **Domi
<groupId>com.github.nalukit</groupId>
<artifactId>nalu-plugin-elemental2</artifactId>
<version>2.10.1-gwt-2.8.2</version>
</dependency>
```

* **GWT 2.9.0 (and newer) - SNAPSHOT**
Expand All @@ -164,14 +165,15 @@ If the project uses a widget set based on **Elemental2**, **Elemento** or **Domi
<groupId>com.github.nalukit</groupId>
<artifactId>nalu-plugin-elemental2</artifactId>
<version>HEAD-SNAPSHOT</version>
</dependency>
```

* **GWT 2.9.0 (and newer) - Release**
```XML
<dependency>
<groupId>com.github.nalukit</groupId>
<artifactId>nalu-plugin-elemental2</artifactId>
<version>2.20.0</version>
<version>2.20.1</version>
</dependency>
```

Expand Down Expand Up @@ -200,11 +202,29 @@ For Elemento there's a dedicated plugin which supports `org.jboss.gwt.elemento.c
<dependency>
<groupId>com.github.nalukit</groupId>
<artifactId>nalu-plugin-elemento</artifactId>
<version>2.20.0</version>
<version>2.20.1</version>
</dependency>
```

The **nalu-plugin-elemento** can also be used with Domino-ui.
For Domino-UI Version 2 there's also a dedicated plugin which supports `org.dominokit.domino.ui.IsElement` as widget type:

* **GWT 2.9.0 (and newer) - SNAPSHOT**
```XML
<dependency>
<groupId>com.github.nalukit</groupId>
<artifactId>nalu-plugin-domino-v2</artifactId>
<version>HEAD-SNAPSHOT</version>
</dependency>
```

* **GWT 2.9.0 (and newer) - Release**
```XML
<dependency>
<groupId>com.github.nalukit</groupId>
<artifactId>nalu-plugin-domino-v2</artifactId>
<version>2.20.1</version>
</dependency>
```

**(These plugins are ready to use with J2CL / GWT 3)**

Expand Down Expand Up @@ -245,12 +265,12 @@ If your project uses a widget set based on **GWT** 2.8.2 or newer, use the **Nal
<dependency>
<groupId>com.github.nalukit</groupId>
<artifactId>nalu-plugin-gwt</artifactId>
<version>2.20.0</version>
<version>2.20.1</version>
</dependency>
<dependency>
<groupId>com.github.nalukit</groupId>
<artifactId>nalu-plugin-gwt-processor</artifactId>
<version>2.20.0</version>
<version>2.20.1</version>
<scope>provided</scope>
</dependency>
```
Expand Down

0 comments on commit bc092c6

Please sign in to comment.