Skip to content

Commit

Permalink
set version to 2.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
FrankHossfeld committed May 15, 2021
1 parent 6c536c3 commit 6aaf376
Show file tree
Hide file tree
Showing 53 changed files with 88 additions and 88 deletions.
24 changes: 12 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,12 +94,12 @@ To use Nalu add the following dependencies to your pom:
<dependency>
<groupId>com.github.nalukit</groupId>
<artifactId>nalu</artifactId>
<version>2.4.0-gwt-2.8.2</version>
<version>2.4.1-gwt-2.8.2</version>
</dependency>
<dependency>
<groupId>com.github.nalukit</groupId>
<artifactId>nalu-processor</artifactId>
<version>2.4.0-gwt-2.8.2</version>
<version>2.4.1-gwt-2.8.2</version>
<scope>provided</scope>
</dependency>
```
Expand All @@ -122,12 +122,12 @@ To use Nalu add the following dependencies to your pom:
<dependency>
<groupId>com.github.nalukit</groupId>
<artifactId>nalu</artifactId>
<version>2.4.0</version>
<version>2.4.1</version>
</dependency>
<dependency>
<groupId>com.github.nalukit</groupId>
<artifactId>nalu-processor</artifactId>
<version>2.4.0</version>
<version>2.4.1</version>
<scope>provided</scope>
</dependency>
```
Expand All @@ -141,7 +141,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.4.0-gwt-2.8.2</version>
<version>2.4.1-gwt-2.8.2</version>
```

* **GWT 2.9.0 - SNAPSHOT**
Expand All @@ -157,7 +157,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.4.0</version>
<version>2.4.1</version>
</dependency>
```

Expand All @@ -168,7 +168,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.4.0-gwt-2.8.2</version>
<version>2.4.1-gwt-2.8.2</version>
</dependency>
```

Expand All @@ -186,7 +186,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.4.0</version>
<version>2.4.1</version>
</dependency>
```

Expand All @@ -201,12 +201,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.4.0-gwt-2.8.2</version>
<version>2.4.1-gwt-2.8.2</version>
</dependency>
<dependency>
<groupId>com.github.nalukit</groupId>
<artifactId>nalu-plugin-gwt-processor</artifactId>
<version>2.4.0-gwt-2.8.2</version>
<version>2.4.1-gwt-2.8.2</version>
<scope>provided</scope>
</dependency>
```
Expand All @@ -231,12 +231,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.4.0</version>
<version>2.4.1</version>
</dependency>
<dependency>
<groupId>com.github.nalukit</groupId>
<artifactId>nalu-plugin-gwt-processor</artifactId>
<version>2.4.0</version>
<version>2.4.1</version>
<scope>provided</scope>
</dependency>
```
Expand Down
4 changes: 2 additions & 2 deletions etc/wiki/06 Application.md
Original file line number Diff line number Diff line change
Expand Up @@ -184,13 +184,13 @@ Nalu supports setting a version String using an annotation and storing the build
@Application(loader = MyLoader.class,
startRoute = "/application/search",
context = MyApplicationContext.class)
@Version("2.4.0")
@Version("2.4.1")
interface MyApplication
extends IsApplication {
}
```

The example above will set the version of the application to '2.4.0'.
The example above will set the version of the application to '2.4.1'.
To access the application version, use: `context.getApplicationVersion()`. To access the build timestamp call `context.getApplicationBuildTime()`.

It is possible to override the value from the version annotation from the command line. Nalu will look for a property called "nalu.application.version". If the property exists, Nalu will use this value. This will only work, in case the Version annotation is used.
Expand Down
2 changes: 1 addition & 1 deletion nalu-plugin-core-web/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<parent>
<groupId>com.github.nalukit</groupId>
<artifactId>nalu-parent</artifactId>
<version>HEAD-SNAPSHOT</version>
<version>2.4.1</version>
</parent>

<artifactId>nalu-plugin-core-web</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion nalu-plugin-elemental2/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<parent>
<groupId>com.github.nalukit</groupId>
<artifactId>nalu-parent</artifactId>
<version>HEAD-SNAPSHOT</version>
<version>2.4.1</version>
</parent>

<artifactId>nalu-plugin-elemental2</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion nalu-plugin-elemento/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<parent>
<groupId>com.github.nalukit</groupId>
<artifactId>nalu-parent</artifactId>
<version>HEAD-SNAPSHOT</version>
<version>2.4.1</version>
</parent>

<artifactId>nalu-plugin-elemento</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion nalu-plugin-gwt-processor/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<parent>
<groupId>com.github.nalukit</groupId>
<artifactId>nalu-parent</artifactId>
<version>HEAD-SNAPSHOT</version>
<version>2.4.1</version>
</parent>

<artifactId>nalu-plugin-gwt-processor</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ public synchronized void init(ProcessingEnvironment processingEnv) {
this.stopwatch = Stopwatch.createStarted();
setUp();
this.processorUtils.createNoteMessage("Nalu-Plugin-GWT-Processor started ...");
this.processorUtils.createNoteMessage("Nalu-Plugin-GWT-Processor version >>HEAD-SNAPSHOT<<");
this.processorUtils.createNoteMessage("Nalu-Plugin-GWT-Processor version >>2.4.1<<");
}

@SuppressWarnings("unused")
Expand Down
2 changes: 1 addition & 1 deletion nalu-plugin-gwt/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<parent>
<groupId>com.github.nalukit</groupId>
<artifactId>nalu-parent</artifactId>
<version>HEAD-SNAPSHOT</version>
<version>2.4.1</version>
</parent>

<artifactId>nalu-plugin-gwt</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion nalu-processor/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<parent>
<groupId>com.github.nalukit</groupId>
<artifactId>nalu-parent</artifactId>
<version>HEAD-SNAPSHOT</version>
<version>2.4.1</version>
</parent>

<artifactId>nalu-processor</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public class ProcessorConstants {
public final static String LOADER_IMPL = "LoaderImpl";
public final static String MODULE_IMPL = "ModuleImpl";
public final static String PLUGIN_IMPL = "PluginImpl";
public final static String PROCESSOR_VERSION = "HEAD-SNAPSHOT";
public final static String PROCESSOR_VERSION = "2.4.1";
public final static String BUILD_TIME = new SimpleDateFormat("yyyy.MM.dd-HH:mm:ss").format(new Date(System.currentTimeMillis()));

}
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public void logProcessorVersion() {
ClientLogger.get().logDetailed("", 0);
ClientLogger.get().logDetailed("=================================================================================", 0);
StringBuilder sb01 = new StringBuilder();
sb01.append("Nalu processor version >>HEAD-SNAPSHOT<< used to generate this source");
sb01.append("Nalu processor version >>2.4.1<< used to generate this source");
ClientLogger.get().logDetailed(sb01.toString(), 0);
ClientLogger.get().logDetailed("=================================================================================", 0);
ClientLogger.get().logDetailed("", 0);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
import java.util.Arrays;

/**
* Build with Nalu version >>HEAD-SNAPSHOT<< at >>2020.11.18-07:07:38<<
* Build with Nalu version >>2.4.1<< at >>2020.11.18-07:07:38<<
*/
public final class ApplicationAnnotationOkWithLoaderImpl extends AbstractApplication<MockContext> implements ApplicationAnnotationOkWithLoader {
public ApplicationAnnotationOkWithLoaderImpl() {
Expand All @@ -29,7 +29,7 @@ public void loadLoggerConfiguration() {

@Override
public void logProcessorVersion() {
this.eventBus.fireEvent(LogEvent.create().sdmOnly(true).addMessage("=================================================================================").addMessage("Nalu processor version >>HEAD-SNAPSHOT<< used to generate this source").addMessage("=================================================================================").addMessage(""));
this.eventBus.fireEvent(LogEvent.create().sdmOnly(true).addMessage("=================================================================================").addMessage("Nalu processor version >>2.4.1<< used to generate this source").addMessage("=================================================================================").addMessage(""));
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
import java.util.Arrays;

/**
* Build with Nalu version >>HEAD-SNAPSHOT<< at >>2020.11.18-07:19:55<<
* Build with Nalu version >>2.4.1<< at >>2020.11.18-07:19:55<<
*/
public final class ApplicationAnnotationOkWithLoaderAndPostLoaderImpl extends AbstractApplication<MockContext> implements ApplicationAnnotationOkWithLoaderAndPostLoader {
public ApplicationAnnotationOkWithLoaderAndPostLoaderImpl() {
Expand All @@ -29,7 +29,7 @@ public void loadLoggerConfiguration() {

@Override
public void logProcessorVersion() {
this.eventBus.fireEvent(LogEvent.create().sdmOnly(true).addMessage("=================================================================================").addMessage("Nalu processor version >>HEAD-SNAPSHOT<< used to generate this source").addMessage("=================================================================================").addMessage(""));
this.eventBus.fireEvent(LogEvent.create().sdmOnly(true).addMessage("=================================================================================").addMessage("Nalu processor version >>2.4.1<< used to generate this source").addMessage("=================================================================================").addMessage(""));
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
import java.util.Arrays;

/**
* Build with Nalu version >>HEAD-SNAPSHOT<< at >>2020.11.18-07:08:28<<
* Build with Nalu version >>2.4.1<< at >>2020.11.18-07:08:28<<
*/
public final class ApplicationAnnotationOkWithLoaderAsInnerInterfaceImpl extends AbstractApplication<MockContext> implements ApplicationAnnotationOkWithLoaderAsInnerInterface {
public ApplicationAnnotationOkWithLoaderAsInnerInterfaceImpl() {
Expand All @@ -30,7 +30,7 @@ public void loadLoggerConfiguration() {

@Override
public void logProcessorVersion() {
this.eventBus.fireEvent(LogEvent.create().sdmOnly(true).addMessage("=================================================================================").addMessage("Nalu processor version >>HEAD-SNAPSHOT<< used to generate this source").addMessage("=================================================================================").addMessage(""));
this.eventBus.fireEvent(LogEvent.create().sdmOnly(true).addMessage("=================================================================================").addMessage("Nalu processor version >>2.4.1<< used to generate this source").addMessage("=================================================================================").addMessage(""));
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
import java.util.Arrays;

/**
* Build with Nalu version >>HEAD-SNAPSHOT<< at >>2020.11.18-07:18:21<<
* Build with Nalu version >>2.4.1<< at >>2020.11.18-07:18:21<<
*/
public final class ApplicationAnnotationOkWithPostLoaderImpl extends AbstractApplication<MockContext> implements ApplicationAnnotationOkWithPostLoader {
public ApplicationAnnotationOkWithPostLoaderImpl() {
Expand All @@ -29,7 +29,7 @@ public void loadLoggerConfiguration() {

@Override
public void logProcessorVersion() {
this.eventBus.fireEvent(LogEvent.create().sdmOnly(true).addMessage("=================================================================================").addMessage("Nalu processor version >>HEAD-SNAPSHOT<< used to generate this source").addMessage("=================================================================================").addMessage(""));
this.eventBus.fireEvent(LogEvent.create().sdmOnly(true).addMessage("=================================================================================").addMessage("Nalu processor version >>2.4.1<< used to generate this source").addMessage("=================================================================================").addMessage(""));
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
import java.util.Arrays;

/**
* Build with Nalu version >>HEAD-SNAPSHOT<< at >>2020.11.18-06:52:32<<
* Build with Nalu version >>2.4.1<< at >>2020.11.18-06:52:32<<
*/
public final class ApplicationAnnotationOkWithoutLoaderImpl extends AbstractApplication<MockContext> implements ApplicationAnnotationOkWithoutLoader {
public ApplicationAnnotationOkWithoutLoaderImpl() {
Expand All @@ -29,7 +29,7 @@ public void loadLoggerConfiguration() {

@Override
public void logProcessorVersion() {
this.eventBus.fireEvent(LogEvent.create().sdmOnly(true).addMessage("=================================================================================").addMessage("Nalu processor version >>HEAD-SNAPSHOT<< used to generate this source").addMessage("=================================================================================").addMessage(""));
this.eventBus.fireEvent(LogEvent.create().sdmOnly(true).addMessage("=================================================================================").addMessage("Nalu processor version >>2.4.1<< used to generate this source").addMessage("=================================================================================").addMessage(""));
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
import java.util.Arrays;

/**
* Build with Nalu version >>HEAD-SNAPSHOT<< at >>2020.11.18-06:53:07<<
* Build with Nalu version >>2.4.1<< at >>2020.11.18-06:53:07<<
*/
public final class MyApplicationImpl extends AbstractApplication<MockContext> implements MyApplication {
public MyApplicationImpl() {
Expand All @@ -30,7 +30,7 @@ public void loadLoggerConfiguration() {

@Override
public void logProcessorVersion() {
this.eventBus.fireEvent(LogEvent.create().sdmOnly(true).addMessage("=================================================================================").addMessage("Nalu processor version >>HEAD-SNAPSHOT<< used to generate this source").addMessage("=================================================================================").addMessage(""));
this.eventBus.fireEvent(LogEvent.create().sdmOnly(true).addMessage("=================================================================================").addMessage("Nalu processor version >>2.4.1<< used to generate this source").addMessage("=================================================================================").addMessage(""));
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
import java.util.Arrays;

/**
* Build with Nalu version >>HEAD-SNAPSHOT<< at >>2020.11.18-06:55:01<<
* Build with Nalu version >>2.4.1<< at >>2020.11.18-06:55:01<<
*/
public final class ApplicationWithComposite01Impl extends AbstractApplication<MockContext> implements ApplicationWithComposite01 {
public ApplicationWithComposite01Impl() {
Expand All @@ -32,7 +32,7 @@ public void loadLoggerConfiguration() {

@Override
public void logProcessorVersion() {
this.eventBus.fireEvent(LogEvent.create().sdmOnly(true).addMessage("=================================================================================").addMessage("Nalu processor version >>HEAD-SNAPSHOT<< used to generate this source").addMessage("=================================================================================").addMessage(""));
this.eventBus.fireEvent(LogEvent.create().sdmOnly(true).addMessage("=================================================================================").addMessage("Nalu processor version >>2.4.1<< used to generate this source").addMessage("=================================================================================").addMessage(""));
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
import java.util.Arrays;

/**
* Build with Nalu version >>HEAD-SNAPSHOT<< at >>2020.11.18-06:55:31<<
* Build with Nalu version >>2.4.1<< at >>2020.11.18-06:55:31<<
*/
public final class ApplicationWithComposite02Impl extends AbstractApplication<MockContext> implements ApplicationWithComposite02 {
public ApplicationWithComposite02Impl() {
Expand All @@ -33,7 +33,7 @@ public void loadLoggerConfiguration() {

@Override
public void logProcessorVersion() {
this.eventBus.fireEvent(LogEvent.create().sdmOnly(true).addMessage("=================================================================================").addMessage("Nalu processor version >>HEAD-SNAPSHOT<< used to generate this source").addMessage("=================================================================================").addMessage(""));
this.eventBus.fireEvent(LogEvent.create().sdmOnly(true).addMessage("=================================================================================").addMessage("Nalu processor version >>2.4.1<< used to generate this source").addMessage("=================================================================================").addMessage(""));
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
import java.util.Arrays;

/**
* Build with Nalu version >>HEAD-SNAPSHOT<< at >>2020.11.18-06:55:58<<
* Build with Nalu version >>2.4.1<< at >>2020.11.18-06:55:58<<
*/
public final class ApplicationWithComposite03Impl extends AbstractApplication<MockContext> implements ApplicationWithComposite03 {
public ApplicationWithComposite03Impl() {
Expand All @@ -33,7 +33,7 @@ public void loadLoggerConfiguration() {

@Override
public void logProcessorVersion() {
this.eventBus.fireEvent(LogEvent.create().sdmOnly(true).addMessage("=================================================================================").addMessage("Nalu processor version >>HEAD-SNAPSHOT<< used to generate this source").addMessage("=================================================================================").addMessage(""));
this.eventBus.fireEvent(LogEvent.create().sdmOnly(true).addMessage("=================================================================================").addMessage("Nalu processor version >>2.4.1<< used to generate this source").addMessage("=================================================================================").addMessage(""));
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
import java.util.Arrays;

/**
* Build with Nalu version >>HEAD-SNAPSHOT<< at >>2020.11.18-06:56:26<<
* Build with Nalu version >>2.4.1<< at >>2020.11.18-06:56:26<<
*/
public final class ApplicationWithComposite04Impl extends AbstractApplication<MockContext> implements ApplicationWithComposite04 {
public ApplicationWithComposite04Impl() {
Expand All @@ -34,7 +34,7 @@ public void loadLoggerConfiguration() {

@Override
public void logProcessorVersion() {
this.eventBus.fireEvent(LogEvent.create().sdmOnly(true).addMessage("=================================================================================").addMessage("Nalu processor version >>HEAD-SNAPSHOT<< used to generate this source").addMessage("=================================================================================").addMessage(""));
this.eventBus.fireEvent(LogEvent.create().sdmOnly(true).addMessage("=================================================================================").addMessage("Nalu processor version >>2.4.1<< used to generate this source").addMessage("=================================================================================").addMessage(""));
}

@Override
Expand Down
Loading

0 comments on commit 6aaf376

Please sign in to comment.