Skip to content

Commit

Permalink
Merge pull request #346 from NaluKit/main
Browse files Browse the repository at this point in the history
Main
  • Loading branch information
FrankHossfeld authored Dec 19, 2023
2 parents c9ead00 + ef6b791 commit 428572c
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 13 deletions.
12 changes: 6 additions & 6 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.12.6</version>
<version>2.12.7</version>
</dependency>
<dependency>
<groupId>com.github.nalukit</groupId>
<artifactId>nalu-processor</artifactId>
<version>2.12.6</version>
<version>2.12.7</version>
<scope>provided</scope>
</dependency>
```
Expand Down Expand Up @@ -171,7 +171,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.12.6</version>
<version>2.12.7</version>
</dependency>
```

Expand Down Expand Up @@ -200,7 +200,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.12.6</version>
<version>2.12.7</version>
</dependency>
```

Expand Down Expand Up @@ -245,12 +245,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.12.6</version>
<version>2.12.7</version>
</dependency>
<dependency>
<groupId>com.github.nalukit</groupId>
<artifactId>nalu-plugin-gwt-processor</artifactId>
<version>2.12.6</version>
<version>2.12.7</version>
<scope>provided</scope>
</dependency>
```
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,8 @@
package com.github.nalukit.nalu.processor;

import com.github.nalukit.nalu.processor.test.ProviderTest;
import org.junit.platform.runner.JUnitPlatform;
import org.junit.platform.suite.api.SelectClasses;
import org.junit.platform.suite.api.Suite;
import org.junit.runner.RunWith;

@Suite()
@SelectClasses({ ProviderTest.class })
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 >>HEAD-SNAPSHOT<< used to generate this source")
.addMessage("Nalu processor version >>2.12.7<< 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 "HEAD-SNAPSHOT";
return "2.12.7";
}

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("HEAD-SNAPSHOT",
Assertions.assertEquals("2.12.7",
Nalu.getVersion());
}

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

<properties>
<revision>HEAD-SNAPSHOT</revision>
<revision>2.12.7</revision>

<github.global.server>github</github.global.server>

Expand All @@ -110,6 +110,7 @@
<gwt-regexp.version>1.0.0-RC1</gwt-regexp.version>
<gwt.version>2.10.0</gwt.version>
<hamcrest-core.version>2.2</hamcrest-core.version>
<java.doc.executable>${java.home}/bin/javadoc</java.doc.executable>
<javapoet.version>1.13.0</javapoet.version>
<jsinterop-annotations.version>2.0.0</jsinterop-annotations.version>
<junit-jupiter.version>5.9.2</junit-jupiter.version>
Expand Down Expand Up @@ -279,7 +280,7 @@
<artifactId>maven-javadoc-plugin</artifactId>
<version>${plugin.version.javadoc}</version>
<configuration>
<javadocExecutable>${java.home}/../bin/javadoc</javadocExecutable>
<javadocExecutable>${java.doc.executable}</javadocExecutable>
</configuration>
<executions>
<execution>
Expand Down

0 comments on commit 428572c

Please sign in to comment.