diff --git a/README.md b/README.md index e359ac77f..1832d39c2 100644 --- a/README.md +++ b/README.md @@ -94,12 +94,12 @@ To use Nalu add the following dependencies to your pom: com.github.nalukit nalu - 2.4.2-gwt-2.8.2 + 2.5.0-gwt-2.8.2 com.github.nalukit nalu-processor - 2.4.2-gwt-2.8.2 + 2.5.0-gwt-2.8.2 provided ``` @@ -122,12 +122,12 @@ To use Nalu add the following dependencies to your pom: com.github.nalukit nalu - 2.4.2 + 2.5.0 com.github.nalukit nalu-processor - 2.4.2 + 2.5.0 provided ``` @@ -141,7 +141,7 @@ If the project uses a widget set based on **Elemental2**, **Elemento** or **Domi com.github.nalukit nalu-plugin-elemental2 - 2.4.2-gwt-2.8.2 + 2.5.0-gwt-2.8.2 ``` * **GWT 2.9.0 - SNAPSHOT** @@ -157,7 +157,7 @@ If the project uses a widget set based on **Elemental2**, **Elemento** or **Domi com.github.nalukit nalu-plugin-elemental2 - 2.4.2 + 2.5.0 ``` @@ -168,7 +168,7 @@ For Elemento there's a dedicated plugin which supports `org.jboss.gwt.elemento.c com.github.nalukit nalu-plugin-elemento - 2.4.2-gwt-2.8.2 + 2.5.0-gwt-2.8.2 ``` @@ -186,7 +186,7 @@ For Elemento there's a dedicated plugin which supports `org.jboss.gwt.elemento.c com.github.nalukit nalu-plugin-elemento - 2.4.2 + 2.5.0 ``` @@ -201,12 +201,12 @@ If your project uses a widget set based on **GWT** 2.8.2 or newer, use the **Nal com.github.nalukit nalu-plugin-gwt - 2.4.2-gwt-2.8.2 + 2.5.0-gwt-2.8.2 com.github.nalukit nalu-plugin-gwt-processor - 2.4.2-gwt-2.8.2 + 2.5.0-gwt-2.8.2 provided ``` @@ -231,12 +231,12 @@ If your project uses a widget set based on **GWT** 2.8.2 or newer, use the **Nal com.github.nalukit nalu-plugin-gwt - 2.4.2 + 2.5.0 com.github.nalukit nalu-plugin-gwt-processor - 2.4.2 + 2.5.0 provided ``` diff --git a/etc/wiki/06 Application.md b/etc/wiki/06 Application.md index d70721b2b..976aad376 100644 --- a/etc/wiki/06 Application.md +++ b/etc/wiki/06 Application.md @@ -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.2") +@Version("1.0.1") interface MyApplication extends IsApplication { } ``` -The example above will set the version of the application to '2.4.2'. +The example above will set the version of the application to '1.0.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. diff --git a/nalu-plugin-core-web/pom.xml b/nalu-plugin-core-web/pom.xml index d183726d0..acb5a2157 100644 --- a/nalu-plugin-core-web/pom.xml +++ b/nalu-plugin-core-web/pom.xml @@ -25,7 +25,7 @@ com.github.nalukit nalu-parent - HEAD-SNAPSHOT + 2.5.0 nalu-plugin-core-web diff --git a/nalu-plugin-elemental2/pom.xml b/nalu-plugin-elemental2/pom.xml index 3c0053c73..5a2c67aa8 100644 --- a/nalu-plugin-elemental2/pom.xml +++ b/nalu-plugin-elemental2/pom.xml @@ -25,7 +25,7 @@ com.github.nalukit nalu-parent - HEAD-SNAPSHOT + 2.5.0 nalu-plugin-elemental2 diff --git a/nalu-plugin-elemento/pom.xml b/nalu-plugin-elemento/pom.xml index 79245fb01..500f63694 100644 --- a/nalu-plugin-elemento/pom.xml +++ b/nalu-plugin-elemento/pom.xml @@ -25,7 +25,7 @@ com.github.nalukit nalu-parent - HEAD-SNAPSHOT + 2.5.0 nalu-plugin-elemento diff --git a/nalu-plugin-gwt-processor/pom.xml b/nalu-plugin-gwt-processor/pom.xml index ad505e2eb..e1d43bb1f 100644 --- a/nalu-plugin-gwt-processor/pom.xml +++ b/nalu-plugin-gwt-processor/pom.xml @@ -25,7 +25,7 @@ com.github.nalukit nalu-parent - HEAD-SNAPSHOT + 2.5.0 nalu-plugin-gwt-processor diff --git a/nalu-plugin-gwt-processor/src/main/java/com/github/nalukit/nalu/processor/NaluPluginGwtProcessor.java b/nalu-plugin-gwt-processor/src/main/java/com/github/nalukit/nalu/processor/NaluPluginGwtProcessor.java index fe32e5935..bec70253f 100644 --- a/nalu-plugin-gwt-processor/src/main/java/com/github/nalukit/nalu/processor/NaluPluginGwtProcessor.java +++ b/nalu-plugin-gwt-processor/src/main/java/com/github/nalukit/nalu/processor/NaluPluginGwtProcessor.java @@ -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.5.0<<"); } @SuppressWarnings("unused") diff --git a/nalu-plugin-gwt/pom.xml b/nalu-plugin-gwt/pom.xml index 4606d7748..7d280c017 100644 --- a/nalu-plugin-gwt/pom.xml +++ b/nalu-plugin-gwt/pom.xml @@ -25,7 +25,7 @@ com.github.nalukit nalu-parent - HEAD-SNAPSHOT + 2.5.0 nalu-plugin-gwt diff --git a/nalu-processor/pom.xml b/nalu-processor/pom.xml index c5a8c7f80..ff569c896 100644 --- a/nalu-processor/pom.xml +++ b/nalu-processor/pom.xml @@ -25,7 +25,7 @@ com.github.nalukit nalu-parent - HEAD-SNAPSHOT + 2.5.0 nalu-processor diff --git a/nalu-processor/src/main/java/com/github/nalukit/nalu/processor/ProcessorConstants.java b/nalu-processor/src/main/java/com/github/nalukit/nalu/processor/ProcessorConstants.java index 363a3a7a2..df6692d21 100644 --- a/nalu-processor/src/main/java/com/github/nalukit/nalu/processor/ProcessorConstants.java +++ b/nalu-processor/src/main/java/com/github/nalukit/nalu/processor/ProcessorConstants.java @@ -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.5.0"; public final static String BUILD_TIME = new SimpleDateFormat("yyyy.MM.dd-HH:mm:ss").format(new Date(System.currentTimeMillis())); } diff --git a/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/application/applicationAnnotationOkWithLoaderAsInnerInterface/ApplicationAnnotationOkWithLoaderAsInnerInterfaceImpl.java b/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/application/applicationAnnotationOkWithLoaderAsInnerInterface/ApplicationAnnotationOkWithLoaderAsInnerInterfaceImpl.java index bad4ee3c7..0d2627922 100644 --- a/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/application/applicationAnnotationOkWithLoaderAsInnerInterface/ApplicationAnnotationOkWithLoaderAsInnerInterfaceImpl.java +++ b/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/application/applicationAnnotationOkWithLoaderAsInnerInterface/ApplicationAnnotationOkWithLoaderAsInnerInterfaceImpl.java @@ -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.5.0<< used to generate this source"); ClientLogger.get().logDetailed(sb01.toString(), 0); ClientLogger.get().logDetailed("=================================================================================", 0); ClientLogger.get().logDetailed("", 0); diff --git a/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/common/application/applicationAnnotationOkWithLoader/ApplicationAnnotationOkWithLoaderImpl.java b/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/common/application/applicationAnnotationOkWithLoader/ApplicationAnnotationOkWithLoaderImpl.java index 3b161dd52..d341eecde 100644 --- a/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/common/application/applicationAnnotationOkWithLoader/ApplicationAnnotationOkWithLoaderImpl.java +++ b/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/common/application/applicationAnnotationOkWithLoader/ApplicationAnnotationOkWithLoaderImpl.java @@ -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.5.0<< at >>2020.11.18-07:07:38<< */ public final class ApplicationAnnotationOkWithLoaderImpl extends AbstractApplication implements ApplicationAnnotationOkWithLoader { public ApplicationAnnotationOkWithLoaderImpl() { @@ -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.5.0<< used to generate this source").addMessage("=================================================================================").addMessage("")); } @Override diff --git a/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/common/application/applicationAnnotationOkWithLoaderAndPostLoader/ApplicationAnnotationOkWithLoaderAndPostLoaderImpl.java b/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/common/application/applicationAnnotationOkWithLoaderAndPostLoader/ApplicationAnnotationOkWithLoaderAndPostLoaderImpl.java index d66f4756e..5a2738944 100644 --- a/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/common/application/applicationAnnotationOkWithLoaderAndPostLoader/ApplicationAnnotationOkWithLoaderAndPostLoaderImpl.java +++ b/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/common/application/applicationAnnotationOkWithLoaderAndPostLoader/ApplicationAnnotationOkWithLoaderAndPostLoaderImpl.java @@ -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.5.0<< at >>2020.11.18-07:19:55<< */ public final class ApplicationAnnotationOkWithLoaderAndPostLoaderImpl extends AbstractApplication implements ApplicationAnnotationOkWithLoaderAndPostLoader { public ApplicationAnnotationOkWithLoaderAndPostLoaderImpl() { @@ -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.5.0<< used to generate this source").addMessage("=================================================================================").addMessage("")); } @Override diff --git a/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/common/application/applicationAnnotationOkWithLoaderAsInnerInterface/ApplicationAnnotationOkWithLoaderAsInnerInterfaceImpl.java b/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/common/application/applicationAnnotationOkWithLoaderAsInnerInterface/ApplicationAnnotationOkWithLoaderAsInnerInterfaceImpl.java index ec2d2f28e..780ec001b 100644 --- a/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/common/application/applicationAnnotationOkWithLoaderAsInnerInterface/ApplicationAnnotationOkWithLoaderAsInnerInterfaceImpl.java +++ b/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/common/application/applicationAnnotationOkWithLoaderAsInnerInterface/ApplicationAnnotationOkWithLoaderAsInnerInterfaceImpl.java @@ -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.5.0<< at >>2020.11.18-07:08:28<< */ public final class ApplicationAnnotationOkWithLoaderAsInnerInterfaceImpl extends AbstractApplication implements ApplicationAnnotationOkWithLoaderAsInnerInterface { public ApplicationAnnotationOkWithLoaderAsInnerInterfaceImpl() { @@ -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.5.0<< used to generate this source").addMessage("=================================================================================").addMessage("")); } @Override diff --git a/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/common/application/applicationAnnotationOkWithPostLoader/ApplicationAnnotationOkWithPostLoaderImpl.java b/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/common/application/applicationAnnotationOkWithPostLoader/ApplicationAnnotationOkWithPostLoaderImpl.java index f4a611c8e..977a3ea9e 100644 --- a/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/common/application/applicationAnnotationOkWithPostLoader/ApplicationAnnotationOkWithPostLoaderImpl.java +++ b/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/common/application/applicationAnnotationOkWithPostLoader/ApplicationAnnotationOkWithPostLoaderImpl.java @@ -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.5.0<< at >>2020.11.18-07:18:21<< */ public final class ApplicationAnnotationOkWithPostLoaderImpl extends AbstractApplication implements ApplicationAnnotationOkWithPostLoader { public ApplicationAnnotationOkWithPostLoaderImpl() { @@ -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.5.0<< used to generate this source").addMessage("=================================================================================").addMessage("")); } @Override diff --git a/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/common/application/applicationAnnotationOkWithoutLoader/ApplicationAnnotationOkWithoutLoaderImpl.java b/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/common/application/applicationAnnotationOkWithoutLoader/ApplicationAnnotationOkWithoutLoaderImpl.java index 42db7ef91..1dd73d50a 100644 --- a/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/common/application/applicationAnnotationOkWithoutLoader/ApplicationAnnotationOkWithoutLoaderImpl.java +++ b/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/common/application/applicationAnnotationOkWithoutLoader/ApplicationAnnotationOkWithoutLoaderImpl.java @@ -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.5.0<< at >>2020.11.18-06:52:32<< */ public final class ApplicationAnnotationOkWithoutLoaderImpl extends AbstractApplication implements ApplicationAnnotationOkWithoutLoader { public ApplicationAnnotationOkWithoutLoaderImpl() { @@ -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.5.0<< used to generate this source").addMessage("=================================================================================").addMessage("")); } @Override diff --git a/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/common/application/applicationAnnotationOkWithoutLoaderAsInnerInterface/MyApplicationImpl.java b/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/common/application/applicationAnnotationOkWithoutLoaderAsInnerInterface/MyApplicationImpl.java index 909883c66..aa4cd2e2e 100644 --- a/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/common/application/applicationAnnotationOkWithoutLoaderAsInnerInterface/MyApplicationImpl.java +++ b/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/common/application/applicationAnnotationOkWithoutLoaderAsInnerInterface/MyApplicationImpl.java @@ -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.5.0<< at >>2020.11.18-06:53:07<< */ public final class MyApplicationImpl extends AbstractApplication implements MyApplication { public MyApplicationImpl() { @@ -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.5.0<< used to generate this source").addMessage("=================================================================================").addMessage("")); } @Override diff --git a/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/common/application/applicationWithComposite01/ApplicationWithComposite01Impl.java b/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/common/application/applicationWithComposite01/ApplicationWithComposite01Impl.java index 5f707fe50..2fa6c59ee 100644 --- a/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/common/application/applicationWithComposite01/ApplicationWithComposite01Impl.java +++ b/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/common/application/applicationWithComposite01/ApplicationWithComposite01Impl.java @@ -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.5.0<< at >>2020.11.18-06:55:01<< */ public final class ApplicationWithComposite01Impl extends AbstractApplication implements ApplicationWithComposite01 { public ApplicationWithComposite01Impl() { @@ -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.5.0<< used to generate this source").addMessage("=================================================================================").addMessage("")); } @Override diff --git a/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/common/application/applicationWithComposite02/ApplicationWithComposite02Impl.java b/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/common/application/applicationWithComposite02/ApplicationWithComposite02Impl.java index 29536b196..8294623a7 100644 --- a/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/common/application/applicationWithComposite02/ApplicationWithComposite02Impl.java +++ b/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/common/application/applicationWithComposite02/ApplicationWithComposite02Impl.java @@ -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.5.0<< at >>2020.11.18-06:55:31<< */ public final class ApplicationWithComposite02Impl extends AbstractApplication implements ApplicationWithComposite02 { public ApplicationWithComposite02Impl() { @@ -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.5.0<< used to generate this source").addMessage("=================================================================================").addMessage("")); } @Override diff --git a/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/common/application/applicationWithComposite03/ApplicationWithComposite03Impl.java b/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/common/application/applicationWithComposite03/ApplicationWithComposite03Impl.java index 86ac83b23..08b159c1d 100644 --- a/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/common/application/applicationWithComposite03/ApplicationWithComposite03Impl.java +++ b/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/common/application/applicationWithComposite03/ApplicationWithComposite03Impl.java @@ -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.5.0<< at >>2020.11.18-06:55:58<< */ public final class ApplicationWithComposite03Impl extends AbstractApplication implements ApplicationWithComposite03 { public ApplicationWithComposite03Impl() { @@ -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.5.0<< used to generate this source").addMessage("=================================================================================").addMessage("")); } @Override diff --git a/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/common/application/applicationWithComposite04/ApplicationWithComposite04Impl.java b/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/common/application/applicationWithComposite04/ApplicationWithComposite04Impl.java index 382b03be5..3202e4a05 100644 --- a/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/common/application/applicationWithComposite04/ApplicationWithComposite04Impl.java +++ b/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/common/application/applicationWithComposite04/ApplicationWithComposite04Impl.java @@ -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.5.0<< at >>2020.11.18-06:56:26<< */ public final class ApplicationWithComposite04Impl extends AbstractApplication implements ApplicationWithComposite04 { public ApplicationWithComposite04Impl() { @@ -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.5.0<< used to generate this source").addMessage("=================================================================================").addMessage("")); } @Override diff --git a/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/common/application/applicationWithComposite05/ApplicationWithComposite05Impl.java b/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/common/application/applicationWithComposite05/ApplicationWithComposite05Impl.java index b0cfdcc68..5c11b7966 100644 --- a/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/common/application/applicationWithComposite05/ApplicationWithComposite05Impl.java +++ b/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/common/application/applicationWithComposite05/ApplicationWithComposite05Impl.java @@ -19,7 +19,7 @@ import java.util.Arrays; /** - * Build with Nalu version >>HEAD-SNAPSHOT<< at >>2020.11.18-06:57:09<< + * Build with Nalu version >>2.5.0<< at >>2020.11.18-06:57:09<< */ public final class ApplicationWithComposite05Impl extends AbstractApplication implements ApplicationWithComposite05 { public ApplicationWithComposite05Impl() { @@ -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.5.0<< used to generate this source").addMessage("=================================================================================").addMessage("")); } @Override diff --git a/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/common/application/applicationWithComposite06/ApplicationWithComposite06Impl.java b/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/common/application/applicationWithComposite06/ApplicationWithComposite06Impl.java index 4981bd276..6fcfea2ef 100644 --- a/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/common/application/applicationWithComposite06/ApplicationWithComposite06Impl.java +++ b/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/common/application/applicationWithComposite06/ApplicationWithComposite06Impl.java @@ -19,7 +19,7 @@ import java.util.Arrays; /** - * Build with Nalu version >>HEAD-SNAPSHOT<< at >>2020.11.18-06:57:33<< + * Build with Nalu version >>2.5.0<< at >>2020.11.18-06:57:33<< */ public final class ApplicationWithComposite06Impl extends AbstractApplication implements ApplicationWithComposite06 { public ApplicationWithComposite06Impl() { @@ -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.5.0<< used to generate this source").addMessage("=================================================================================").addMessage("")); } @Override diff --git a/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/common/application/applicationWithComposite07/ApplicationWithComposite07Impl.java b/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/common/application/applicationWithComposite07/ApplicationWithComposite07Impl.java index 152e46969..0ecc69c7e 100644 --- a/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/common/application/applicationWithComposite07/ApplicationWithComposite07Impl.java +++ b/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/common/application/applicationWithComposite07/ApplicationWithComposite07Impl.java @@ -20,7 +20,7 @@ import java.util.Arrays; /** - * Build with Nalu version >>HEAD-SNAPSHOT<< at >>2020.11.18-06:57:58<< + * Build with Nalu version >>2.5.0<< at >>2020.11.18-06:57:58<< */ public final class ApplicationWithComposite07Impl extends AbstractApplication implements ApplicationWithComposite07 { public ApplicationWithComposite07Impl() { @@ -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.5.0<< used to generate this source").addMessage("=================================================================================").addMessage("")); } @Override diff --git a/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/common/application/applicationWithComposite08/ApplicationWithComposite08Impl.java b/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/common/application/applicationWithComposite08/ApplicationWithComposite08Impl.java index 898b317e8..c8878282f 100644 --- a/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/common/application/applicationWithComposite08/ApplicationWithComposite08Impl.java +++ b/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/common/application/applicationWithComposite08/ApplicationWithComposite08Impl.java @@ -20,7 +20,7 @@ import java.util.Arrays; /** - * Build with Nalu version >>HEAD-SNAPSHOT<< at >>2020.10.23-11:44:39<< */ + * Build with Nalu version >>2.5.0<< at >>2020.10.23-11:44:39<< */ public final class ApplicationWithComposite07Impl extends AbstractApplication implements ApplicationWithComposite07 { public ApplicationWithComposite07Impl() { super(); @@ -32,7 +32,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.5.0<< used to generate this source"); ClientLogger.get().logDetailed(sb01.toString(), 0); ClientLogger.get().logDetailed("=================================================================================", 0); ClientLogger.get().logDetailed("", 0); diff --git a/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/common/application/startRouteOK/StartRouteOKImpl.java b/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/common/application/startRouteOK/StartRouteOKImpl.java index 06acc6781..aed0a746f 100644 --- a/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/common/application/startRouteOK/StartRouteOKImpl.java +++ b/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/common/application/startRouteOK/StartRouteOKImpl.java @@ -15,7 +15,7 @@ import java.util.Arrays; /** - * Build with Nalu version >>HEAD-SNAPSHOT<< at >>2021.03.31-21:44:59<< + * Build with Nalu version >>2.5.0<< at >>2021.03.31-21:44:59<< */ public final class StartRouteOKImpl extends AbstractApplication implements StartRouteOK { public StartRouteOKImpl() { @@ -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.5.0<< used to generate this source").addMessage("=================================================================================").addMessage("")); } @Override diff --git a/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/common/ui/controllerWithComposite01/ControllerWithComposite01CreatorImpl.java b/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/common/ui/controllerWithComposite01/ControllerWithComposite01CreatorImpl.java index e2caf819a..5e3a442f6 100644 --- a/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/common/ui/controllerWithComposite01/ControllerWithComposite01CreatorImpl.java +++ b/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/common/ui/controllerWithComposite01/ControllerWithComposite01CreatorImpl.java @@ -14,7 +14,7 @@ import org.gwtproject.event.shared.SimpleEventBus; /** - * Build with Nalu version >>HEAD-SNAPSHOT<< at >>2020.08.31-11:49:34<< + * Build with Nalu version >>2.5.0<< at >>2020.08.31-11:49:34<< */ public final class ControllerWithComposite01CreatorImpl extends AbstractControllerCreator implements IsControllerCreator { public ControllerWithComposite01CreatorImpl(Router router, MockContext context, diff --git a/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/common/ui/controllerWithComposite02/ControllerWithComposite02CreatorImpl.java b/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/common/ui/controllerWithComposite02/ControllerWithComposite02CreatorImpl.java index 64f423737..20e490d7e 100644 --- a/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/common/ui/controllerWithComposite02/ControllerWithComposite02CreatorImpl.java +++ b/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/common/ui/controllerWithComposite02/ControllerWithComposite02CreatorImpl.java @@ -14,7 +14,7 @@ import org.gwtproject.event.shared.SimpleEventBus; /** - * Build with Nalu version >>HEAD-SNAPSHOT<< at >>2020.08.31-11:49:34<< + * Build with Nalu version >>2.5.0<< at >>2020.08.31-11:49:34<< */ public final class ControllerWithComposite02CreatorImpl extends AbstractControllerCreator implements IsControllerCreator { public ControllerWithComposite02CreatorImpl(Router router, MockContext context, diff --git a/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/common/ui/controllerWithComposite03/ControllerWithComposite03CreatorImpl.java b/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/common/ui/controllerWithComposite03/ControllerWithComposite03CreatorImpl.java index af0a5aabf..c165ad26d 100644 --- a/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/common/ui/controllerWithComposite03/ControllerWithComposite03CreatorImpl.java +++ b/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/common/ui/controllerWithComposite03/ControllerWithComposite03CreatorImpl.java @@ -14,7 +14,7 @@ import org.gwtproject.event.shared.SimpleEventBus; /** - * Build with Nalu version >>HEAD-SNAPSHOT<< at >>2020.08.31-11:49:34<< + * Build with Nalu version >>2.5.0<< at >>2020.08.31-11:49:34<< */ public final class ControllerWithComposite03CreatorImpl extends AbstractControllerCreator implements IsControllerCreator { public ControllerWithComposite03CreatorImpl(Router router, MockContext context, diff --git a/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/compositeCreator/ok/CompositeCreatorImpl.java b/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/compositeCreator/ok/CompositeCreatorImpl.java index 4f954c21a..b75d43575 100644 --- a/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/compositeCreator/ok/CompositeCreatorImpl.java +++ b/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/compositeCreator/ok/CompositeCreatorImpl.java @@ -13,7 +13,7 @@ import org.gwtproject.event.shared.SimpleEventBus; /** - * Build with Nalu version >>HEAD-SNAPSHOT<< at >>2020.11.08-16:38:33<< + * Build with Nalu version >>2.5.0<< at >>2020.11.08-16:38:33<< */ public final class CompositeCreatorImpl extends AbstractCompositeCreator implements IsCompositeCreator { public CompositeCreatorImpl(Router router, MockContext context, SimpleEventBus eventBus) { diff --git a/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/controller/generateWithIsComponentCreator/GenerateWithIsComponentCreatorImpl.java b/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/controller/generateWithIsComponentCreator/GenerateWithIsComponentCreatorImpl.java index 8fbdfeab0..8145ce343 100644 --- a/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/controller/generateWithIsComponentCreator/GenerateWithIsComponentCreatorImpl.java +++ b/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/controller/generateWithIsComponentCreator/GenerateWithIsComponentCreatorImpl.java @@ -15,7 +15,7 @@ import java.util.Arrays; /** - * Build with Nalu version >>HEAD-SNAPSHOT<< at >>2020.11.18-06:49:48<< + * Build with Nalu version >>2.5.0<< at >>2020.11.18-06:49:48<< */ public final class GenerateWithIsComponentCreatorImpl extends AbstractApplication implements GenerateWithIsComponentCreator { public GenerateWithIsComponentCreatorImpl() { @@ -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.5.0<< used to generate this source").addMessage("=================================================================================").addMessage("")); } @Override diff --git a/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/controller/generateWithoutIsComponentCreator/GenerateWithoutIsComponentCreatorImpl.java b/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/controller/generateWithoutIsComponentCreator/GenerateWithoutIsComponentCreatorImpl.java index 4a9b81412..5da660fea 100644 --- a/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/controller/generateWithoutIsComponentCreator/GenerateWithoutIsComponentCreatorImpl.java +++ b/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/controller/generateWithoutIsComponentCreator/GenerateWithoutIsComponentCreatorImpl.java @@ -15,7 +15,7 @@ import java.util.Arrays; /** - * Build with Nalu version >>HEAD-SNAPSHOT<< at >>2020.11.18-06:49:25<< + * Build with Nalu version >>2.5.0<< at >>2020.11.18-06:49:25<< */ public final class GenerateWithoutIsComponentCreatorImpl extends AbstractApplication implements GenerateWithoutIsComponentCreator { public GenerateWithoutIsComponentCreatorImpl() { @@ -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.5.0<< used to generate this source").addMessage("=================================================================================").addMessage("")); } @Override diff --git a/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/controllerCreator/controllerCreatorOkWithOneParameter01/ControllerC02CreatorImpl.java b/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/controllerCreator/controllerCreatorOkWithOneParameter01/ControllerC02CreatorImpl.java index f4c157df3..191df8266 100644 --- a/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/controllerCreator/controllerCreatorOkWithOneParameter01/ControllerC02CreatorImpl.java +++ b/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/controllerCreator/controllerCreatorOkWithOneParameter01/ControllerC02CreatorImpl.java @@ -14,7 +14,7 @@ import org.gwtproject.event.shared.SimpleEventBus; /** - * Build with Nalu version >>HEAD-SNAPSHOT<< at >>2020.08.31-11:52:30<< + * Build with Nalu version >>2.5.0<< at >>2020.08.31-11:52:30<< */ public final class ControllerC02CreatorImpl extends AbstractControllerCreator implements IsControllerCreator { public ControllerC02CreatorImpl(Router router, MockContext context, SimpleEventBus eventBus) { diff --git a/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/controllerCreator/controllerCreatorOkWithOneParameter01WithoutAcceptParameter/ControllerC03CreatorImpl.java b/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/controllerCreator/controllerCreatorOkWithOneParameter01WithoutAcceptParameter/ControllerC03CreatorImpl.java index 98a4d724d..e61dcda3a 100644 --- a/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/controllerCreator/controllerCreatorOkWithOneParameter01WithoutAcceptParameter/ControllerC03CreatorImpl.java +++ b/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/controllerCreator/controllerCreatorOkWithOneParameter01WithoutAcceptParameter/ControllerC03CreatorImpl.java @@ -14,7 +14,7 @@ import org.gwtproject.event.shared.SimpleEventBus; /** - * Build with Nalu version >>HEAD-SNAPSHOT<< at >>2020.08.31-11:52:30<< + * Build with Nalu version >>2.5.0<< at >>2020.08.31-11:52:30<< */ public final class ControllerC03CreatorImpl extends AbstractControllerCreator implements IsControllerCreator { public ControllerC03CreatorImpl(Router router, MockContext context, SimpleEventBus eventBus) { diff --git a/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/controllerCreator/controllerCreatorOkWithTwoParameter01/ControllerC04CreatorImpl.java b/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/controllerCreator/controllerCreatorOkWithTwoParameter01/ControllerC04CreatorImpl.java index 1f020a952..7513413bd 100644 --- a/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/controllerCreator/controllerCreatorOkWithTwoParameter01/ControllerC04CreatorImpl.java +++ b/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/controllerCreator/controllerCreatorOkWithTwoParameter01/ControllerC04CreatorImpl.java @@ -14,7 +14,7 @@ import org.gwtproject.event.shared.SimpleEventBus; /** - * Build with Nalu version >>HEAD-SNAPSHOT<< at >>2020.08.31-11:52:30<< + * Build with Nalu version >>2.5.0<< at >>2020.08.31-11:52:30<< */ public final class ControllerC04CreatorImpl extends AbstractControllerCreator implements IsControllerCreator { public ControllerC04CreatorImpl(Router router, MockContext context, SimpleEventBus eventBus) { diff --git a/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/controllerCreator/controllerCreatorOkWithTwoParameter03/ControllerC06CreatorImpl.java b/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/controllerCreator/controllerCreatorOkWithTwoParameter03/ControllerC06CreatorImpl.java index 9f01ae469..4f8a80dc8 100644 --- a/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/controllerCreator/controllerCreatorOkWithTwoParameter03/ControllerC06CreatorImpl.java +++ b/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/controllerCreator/controllerCreatorOkWithTwoParameter03/ControllerC06CreatorImpl.java @@ -14,7 +14,7 @@ import org.gwtproject.event.shared.SimpleEventBus; /** - * Build with Nalu version >>HEAD-SNAPSHOT<< at >>2020.08.31-11:52:30<< + * Build with Nalu version >>2.5.0<< at >>2020.08.31-11:52:30<< */ public final class ControllerC06CreatorImpl extends AbstractControllerCreator implements IsControllerCreator { public ControllerC06CreatorImpl(Router router, MockContext context, SimpleEventBus eventBus) { diff --git a/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/controllerCreator/controllerCreatorOkWithTwoParameter04/ControllerC07CreatorImpl.java b/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/controllerCreator/controllerCreatorOkWithTwoParameter04/ControllerC07CreatorImpl.java index 24eb82b51..0e6c0ac45 100644 --- a/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/controllerCreator/controllerCreatorOkWithTwoParameter04/ControllerC07CreatorImpl.java +++ b/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/controllerCreator/controllerCreatorOkWithTwoParameter04/ControllerC07CreatorImpl.java @@ -14,7 +14,7 @@ import org.gwtproject.event.shared.SimpleEventBus; /** - * Build with Nalu version >>HEAD-SNAPSHOT<< at >>2020.08.31-11:52:30<< + * Build with Nalu version >>2.5.0<< at >>2020.08.31-11:52:30<< */ public final class ControllerC07CreatorImpl extends AbstractControllerCreator implements IsControllerCreator { public ControllerC07CreatorImpl(Router router, MockContext context, SimpleEventBus eventBus) { diff --git a/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/controllerCreator/controllerCreatorOkWithoutParameter/ControllerC01CreatorImpl.java b/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/controllerCreator/controllerCreatorOkWithoutParameter/ControllerC01CreatorImpl.java index 7f1e76f38..4f0469157 100644 --- a/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/controllerCreator/controllerCreatorOkWithoutParameter/ControllerC01CreatorImpl.java +++ b/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/controllerCreator/controllerCreatorOkWithoutParameter/ControllerC01CreatorImpl.java @@ -14,7 +14,7 @@ import org.gwtproject.event.shared.SimpleEventBus; /** - * Build with Nalu version >>HEAD-SNAPSHOT<< at >>2020.08.31-11:52:30<< + * Build with Nalu version >>2.5.0<< at >>2020.08.31-11:52:30<< */ public final class ControllerC01CreatorImpl extends AbstractControllerCreator implements IsControllerCreator { public ControllerC01CreatorImpl(Router router, MockContext context, SimpleEventBus eventBus) { diff --git a/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/controllerCreator/multiRouteSupport01/MultiRouteController01CreatorImpl.java b/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/controllerCreator/multiRouteSupport01/MultiRouteController01CreatorImpl.java index 6f71549c2..dff26ba90 100644 --- a/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/controllerCreator/multiRouteSupport01/MultiRouteController01CreatorImpl.java +++ b/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/controllerCreator/multiRouteSupport01/MultiRouteController01CreatorImpl.java @@ -14,7 +14,7 @@ import org.gwtproject.event.shared.SimpleEventBus; /** - * Build with Nalu version >>HEAD-SNAPSHOT<< at >>2020.08.31-11:52:30<< + * Build with Nalu version >>2.5.0<< at >>2020.08.31-11:52:30<< */ public final class MultiRouteController01CreatorImpl extends AbstractControllerCreator implements IsControllerCreator { public MultiRouteController01CreatorImpl(Router router, MockContext context, diff --git a/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/errorPopUpController/errorPopUpAnnotationOk/ErrorPopUpAnnotationOkImpl.java b/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/errorPopUpController/errorPopUpAnnotationOk/ErrorPopUpAnnotationOkImpl.java index 687fc935e..fa4913bbd 100644 --- a/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/errorPopUpController/errorPopUpAnnotationOk/ErrorPopUpAnnotationOkImpl.java +++ b/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/errorPopUpController/errorPopUpAnnotationOk/ErrorPopUpAnnotationOkImpl.java @@ -18,7 +18,7 @@ import java.util.Arrays; /** - * Build with Nalu version >>HEAD-SNAPSHOT<< at >>2020.11.18-06:45:03<< + * Build with Nalu version >>2.5.0<< at >>2020.11.18-06:45:03<< */ public final class ErrorPopUpAnnotationOkImpl extends AbstractApplication implements ErrorPopUpAnnotationOk { public ErrorPopUpAnnotationOkImpl() { @@ -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.5.0<< used to generate this source").addMessage("=================================================================================").addMessage("")); } @Override diff --git a/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/logger/loggerAnnotationOk01/LoggerAnnotationOk01Impl.java b/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/logger/loggerAnnotationOk01/LoggerAnnotationOk01Impl.java index 8eb784002..a71e03594 100644 --- a/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/logger/loggerAnnotationOk01/LoggerAnnotationOk01Impl.java +++ b/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/logger/loggerAnnotationOk01/LoggerAnnotationOk01Impl.java @@ -17,7 +17,7 @@ import java.util.Arrays; /** - * Build with Nalu version >>HEAD-SNAPSHOT<< at >>2020.11.18-06:48:02<< + * Build with Nalu version >>2.5.0<< at >>2020.11.18-06:48:02<< */ public final class LoggerAnnotationOk01Impl extends AbstractApplication implements LoggerAnnotationOk01 { public LoggerAnnotationOk01Impl() { @@ -36,7 +36,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.5.0<< used to generate this source").addMessage("=================================================================================").addMessage("")); } @Override diff --git a/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/logger/loggerAnnotationOk02/LoggerAnnotationOk02Impl.java b/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/logger/loggerAnnotationOk02/LoggerAnnotationOk02Impl.java index 6c79ed668..dfef491c1 100644 --- a/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/logger/loggerAnnotationOk02/LoggerAnnotationOk02Impl.java +++ b/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/logger/loggerAnnotationOk02/LoggerAnnotationOk02Impl.java @@ -15,7 +15,7 @@ import java.util.Arrays; /** - * Build with Nalu version >>HEAD-SNAPSHOT<< at >>2020.11.18-06:48:30<< + * Build with Nalu version >>2.5.0<< at >>2020.11.18-06:48:30<< */ public final class LoggerAnnotationOk02Impl extends AbstractApplication implements LoggerAnnotationOk02 { public LoggerAnnotationOk02Impl() { @@ -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.5.0<< used to generate this source").addMessage("=================================================================================").addMessage("")); } @Override diff --git a/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/popUpControllerCreator/ok/PopUpController01CreatorImpl.java b/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/popUpControllerCreator/ok/PopUpController01CreatorImpl.java index 026ea344b..a2f9f414f 100644 --- a/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/popUpControllerCreator/ok/PopUpController01CreatorImpl.java +++ b/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/popUpControllerCreator/ok/PopUpController01CreatorImpl.java @@ -10,7 +10,7 @@ import org.gwtproject.event.shared.SimpleEventBus; /** - * Build with Nalu version >>HEAD-SNAPSHOT<< at >>2020.11.05-23:12:17<< + * Build with Nalu version >>2.5.0<< at >>2020.11.05-23:12:17<< */ public final class PopUpController01CreatorImpl extends AbstractPopUpControllerCreator implements IsPopUpControllerCreator { public PopUpController01CreatorImpl(Router router, MockContext context, SimpleEventBus eventBus) { diff --git a/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/shellCreator/ok/MockShellCreatorImpl.java b/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/shellCreator/ok/MockShellCreatorImpl.java index b3332043d..0dac973ab 100644 --- a/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/shellCreator/ok/MockShellCreatorImpl.java +++ b/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/shellCreator/ok/MockShellCreatorImpl.java @@ -9,7 +9,7 @@ import org.gwtproject.event.shared.SimpleEventBus; /** - * Build with Nalu version >>HEAD-SNAPSHOT<< at >>2020.09.16-22:14:22<< + * Build with Nalu version >>2.5.0<< at >>2020.09.16-22:14:22<< */ public final class MockShellCreatorImpl extends AbstractShellCreator implements IsShellCreator { public MockShellCreatorImpl(Router router, MockContext context, SimpleEventBus eventBus) { diff --git a/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/tracker/applicationWithTracker/ApplicationWithTrackerImpl.java b/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/tracker/applicationWithTracker/ApplicationWithTrackerImpl.java index ad74fc6ef..94dfcc2b9 100644 --- a/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/tracker/applicationWithTracker/ApplicationWithTrackerImpl.java +++ b/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/tracker/applicationWithTracker/ApplicationWithTrackerImpl.java @@ -16,7 +16,7 @@ import java.util.Arrays; /** - * Build with Nalu version >>HEAD-SNAPSHOT<< at >>2020.11.18-06:46:24<< + * Build with Nalu version >>2.5.0<< at >>2020.11.18-06:46:24<< */ public final class ApplicationWithTrackerImpl extends AbstractApplication implements ApplicationWithTracker { public ApplicationWithTrackerImpl() { @@ -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.5.0<< used to generate this source").addMessage("=================================================================================").addMessage("")); } @Override diff --git a/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/version/applicationWithVersionExtendingIsModuleContest/VersionAnnotationImpl.java b/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/version/applicationWithVersionExtendingIsModuleContest/VersionAnnotationImpl.java index 6ca76c48c..ea1a2dee7 100644 --- a/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/version/applicationWithVersionExtendingIsModuleContest/VersionAnnotationImpl.java +++ b/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/version/applicationWithVersionExtendingIsModuleContest/VersionAnnotationImpl.java @@ -16,7 +16,7 @@ import java.util.Arrays; /** - * Build with Nalu version >>HEAD-SNAPSHOT<< at >>2020.11.06-14:27:21<< + * Build with Nalu version >>2.5.0<< at >>2020.11.06-14:27:21<< */ public final class VersionAnnotationImpl extends AbstractApplication implements VersionAnnotation { public VersionAnnotationImpl() { @@ -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.5.0<< used to generate this source").addMessage("=================================================================================").addMessage("")); } @Override diff --git a/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/version/applicationWithVersionNotExtendingIsModuleContest/VersionAnnotationImpl.java b/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/version/applicationWithVersionNotExtendingIsModuleContest/VersionAnnotationImpl.java index 5add05182..415958c03 100644 --- a/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/version/applicationWithVersionNotExtendingIsModuleContest/VersionAnnotationImpl.java +++ b/nalu-processor/src/test/resources/com/github/nalukit/nalu/processor/version/applicationWithVersionNotExtendingIsModuleContest/VersionAnnotationImpl.java @@ -15,7 +15,7 @@ import java.util.Arrays; /** - * Build with Nalu version >>HEAD-SNAPSHOT<< at >>2020.11.18-06:47:16<< + * Build with Nalu version >>2.5.0<< at >>2020.11.18-06:47:16<< */ public final class VersionAnnotationImpl extends AbstractApplication implements VersionAnnotation { public VersionAnnotationImpl() { @@ -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.5.0<< used to generate this source").addMessage("=================================================================================").addMessage("")); } @Override diff --git a/nalu/pom.xml b/nalu/pom.xml index 1e4195946..aa42d59a7 100644 --- a/nalu/pom.xml +++ b/nalu/pom.xml @@ -25,7 +25,7 @@ com.github.nalukit nalu-parent - HEAD-SNAPSHOT + 2.5.0 nalu diff --git a/nalu/src/main/java/com/github/nalukit/nalu/client/Nalu.java b/nalu/src/main/java/com/github/nalukit/nalu/client/Nalu.java index da96687eb..1b0325857 100644 --- a/nalu/src/main/java/com/github/nalukit/nalu/client/Nalu.java +++ b/nalu/src/main/java/com/github/nalukit/nalu/client/Nalu.java @@ -22,7 +22,7 @@ public class Nalu { public static String getVersion() { - return "HEAD-SNAPSHOT"; + return "2.5.0"; } public static boolean hasHistory() { diff --git a/nalu/src/test/java/com/github/nalukit/nalu/client/NaluTest.java b/nalu/src/test/java/com/github/nalukit/nalu/client/NaluTest.java index 00303a53a..0c78843f9 100644 --- a/nalu/src/test/java/com/github/nalukit/nalu/client/NaluTest.java +++ b/nalu/src/test/java/com/github/nalukit/nalu/client/NaluTest.java @@ -8,7 +8,7 @@ public class NaluTest { @Test void getVersion() { - Assertions.assertEquals("HEAD-SNAPSHOT", + Assertions.assertEquals("2.5.0", Nalu.getVersion()); } diff --git a/nalu/src/test/java/com/github/nalukit/nalu/simpleapplication01/client/NaluSimpleApplicationContext.java b/nalu/src/test/java/com/github/nalukit/nalu/simpleapplication01/client/NaluSimpleApplicationContext.java index ec07f06fe..98bd56405 100644 --- a/nalu/src/test/java/com/github/nalukit/nalu/simpleapplication01/client/NaluSimpleApplicationContext.java +++ b/nalu/src/test/java/com/github/nalukit/nalu/simpleapplication01/client/NaluSimpleApplicationContext.java @@ -31,7 +31,7 @@ public class NaluSimpleApplicationContext private String searchCity; public NaluSimpleApplicationContext() { - this.version = "HEAD-SNAPSHOT"; + this.version = "2.5.0"; } public String getVersion() { diff --git a/nalu/src/test/java/com/github/nalukit/nalu/simpleapplication02/client/NaluSimpleApplicationContext.java b/nalu/src/test/java/com/github/nalukit/nalu/simpleapplication02/client/NaluSimpleApplicationContext.java index b3b058007..4e5848f16 100644 --- a/nalu/src/test/java/com/github/nalukit/nalu/simpleapplication02/client/NaluSimpleApplicationContext.java +++ b/nalu/src/test/java/com/github/nalukit/nalu/simpleapplication02/client/NaluSimpleApplicationContext.java @@ -31,7 +31,7 @@ public class NaluSimpleApplicationContext private String searchCity; public NaluSimpleApplicationContext() { - this.version = "HEAD-SNAPSHOT"; + this.version = "2.5.0"; } public String getVersion() { diff --git a/pom.xml b/pom.xml index a91256483..811826277 100644 --- a/pom.xml +++ b/pom.xml @@ -24,7 +24,7 @@ com.github.nalukit nalu-parent - HEAD-SNAPSHOT + 2.5.0 pom nalu-parent