Skip to content

Commit

Permalink
Merge pull request #368 from NaluKit/release/2.20.4
Browse files Browse the repository at this point in the history
Release/2.20.4
  • Loading branch information
FrankHossfeld authored Mar 6, 2025
2 parents 3321dd9 + 57a164a commit a103e48
Show file tree
Hide file tree
Showing 10 changed files with 102 additions and 103 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
cache: maven
- name: Test with Maven
run: mvn test -ntp
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
if: failure()
with:
name: surefire-report
Expand Down
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
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.3</version>
<version>2.20.4</version>
</dependency>
<dependency>
<groupId>com.github.nalukit</groupId>
<artifactId>nalu-processor</artifactId>
<version>2.20.3</version>
<version>2.20.4</version>
<scope>provided</scope>
</dependency>
```
Expand Down Expand Up @@ -173,7 +173,7 @@ If the project uses a widget set based on **Elemental2**, **Elemento** or **Domi
<dependency>
<groupId>com.github.nalukit</groupId>
<artifactId>nalu-plugin-elemental2</artifactId>
<version>2.20.3</version>
<version>2.20.4</version>
</dependency>
```

Expand Down Expand Up @@ -202,7 +202,7 @@ 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.3</version>
<version>2.20.4</version>
</dependency>
```

Expand All @@ -222,7 +222,7 @@ For Domino-UI Version 2 there's also a dedicated plugin which supports `org.domi
<dependency>
<groupId>com.github.nalukit</groupId>
<artifactId>nalu-plugin-domino-v2</artifactId>
<version>2.20.3</version>
<version>2.20.4</version>
</dependency>
```

Expand Down Expand Up @@ -265,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.3</version>
<version>2.20.4</version>
</dependency>
<dependency>
<groupId>com.github.nalukit</groupId>
<artifactId>nalu-plugin-gwt-processor</artifactId>
<version>2.20.3</version>
<version>2.20.4</version>
<scope>provided</scope>
</dependency>
```
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public void logProcessorVersion() {
this.eventBus.fireEvent(LogEvent.create()
.sdmOnly(true)
.addMessage("=================================================================================")
.addMessage("Nalu processor version >>2.20.3<< used to generate this source")
.addMessage("Nalu processor version >>2.20.4<< used to generate this source")
.addMessage("=================================================================================")
.addMessage(""));
}
Expand Down
2 changes: 1 addition & 1 deletion nalu/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-all</artifactId>
<artifactId>hamcrest-core</artifactId>
<version>${hamcrest.version}</version>
</dependency> </dependencies>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public class Nalu {

public static String getVersion() {
// TODO Change this for other versions
return "2.20.3";
return "2.20.4";
}

public static boolean hasHistory() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public class NaluTest {
void getVersion()
throws IOException {
// TODO Change this if you want to test against another version
Assertions.assertEquals("2.20.3",
Assertions.assertEquals("2.20.4",
Nalu.getVersion());
}

Expand Down
Loading

0 comments on commit a103e48

Please sign in to comment.