Skip to content

Commit

Permalink
Merge pull request #366 from NaluKit/reelase/2.20.3
Browse files Browse the repository at this point in the history
Reelase/2.20.3
  • Loading branch information
FrankHossfeld authored Nov 15, 2024
2 parents 126a021 + ee949dd commit 3321dd9
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
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.2</version>
<version>2.20.3</version>
</dependency>
<dependency>
<groupId>com.github.nalukit</groupId>
<artifactId>nalu-processor</artifactId>
<version>2.20.2</version>
<version>2.20.3</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.2</version>
<version>2.20.3</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.2</version>
<version>2.20.3</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.2</version>
<version>2.20.3</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.2</version>
<version>2.20.3</version>
</dependency>
<dependency>
<groupId>com.github.nalukit</groupId>
<artifactId>nalu-plugin-gwt-processor</artifactId>
<version>2.20.2</version>
<version>2.20.3</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.2<< used to generate this source")
.addMessage("Nalu processor version >>2.20.3<< used to generate this source")
.addMessage("=================================================================================")
.addMessage(""));
}
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.2";
return "2.20.3";
}

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.2",
Assertions.assertEquals("2.20.3",
Nalu.getVersion());
}

Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@
</distributionManagement>

<properties>
<revision>2.20.2</revision>
<revision>2.20.3</revision>

<auto-common.version>1.2.2</auto-common.version>
<auto-service.version>1.1.1</auto-service.version>
Expand All @@ -97,7 +97,7 @@
<guava.version>33.2.1-jre</guava.version>
<gwt-event.version>1.0.0-RC1</gwt-event.version>
<gwt-regexp.version>1.0.0-RC1</gwt-regexp.version>
<gwt.version>2.12.0</gwt.version>
<gwt.version>2.12.1</gwt.version>
<hamcrest.version>1.3</hamcrest.version>
<hamcrest-core.version>2.2</hamcrest-core.version>
<java.doc.executable>${java.home}/bin/javadoc</java.doc.executable>
Expand Down

0 comments on commit 3321dd9

Please sign in to comment.