Skip to content

Commit

Permalink
prepare release: 2.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
FrankHossfeld committed May 2, 2021
1 parent 9feab5b commit 2cf8f6d
Show file tree
Hide file tree
Showing 51 changed files with 75 additions and 77 deletions.
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.3.0</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.3.0</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.3.0</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.3.0</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.3.0<<");
}

@SuppressWarnings("unused")
Expand Down
4 changes: 2 additions & 2 deletions 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.3.0</version>
</parent>

<artifactId>nalu-plugin-gwt</artifactId>
Expand Down Expand Up @@ -67,7 +67,7 @@

<!-- <properties>-->
<!-- gwt-events: once it is on maven central, use it!
<gwt-events.version>HEAD-SNAPSHOT</gwt-events.version>
<gwt-events.version>2.3.0</gwt-events.version>
-->
<!-- </properties>-->

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.3.0</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.3.0";
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.3.0<< 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.3.0<< 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.3.0<< 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.3.0<< 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.3.0<< 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.3.0<< 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.3.0<< 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.3.0<< 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.3.0<< 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.3.0<< 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.3.0<< 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.3.0<< 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.3.0<< 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.3.0<< 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.3.0<< 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.3.0<< 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.3.0<< 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.3.0<< 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.3.0<< 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.3.0<< 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.3.0<< 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:57:09<<
* Build with Nalu version >>2.3.0<< at >>2020.11.18-06:57:09<<
*/
public final class ApplicationWithComposite05Impl extends AbstractApplication<MockContext> implements ApplicationWithComposite05 {
public ApplicationWithComposite05Impl() {
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.3.0<< 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:57:33<<
* Build with Nalu version >>2.3.0<< at >>2020.11.18-06:57:33<<
*/
public final class ApplicationWithComposite06Impl extends AbstractApplication<MockContext> implements ApplicationWithComposite06 {
public ApplicationWithComposite06Impl() {
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.3.0<< 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:57:58<<
* Build with Nalu version >>2.3.0<< at >>2020.11.18-06:57:58<<
*/
public final class ApplicationWithComposite07Impl extends AbstractApplication<MockContext> implements ApplicationWithComposite07 {
public ApplicationWithComposite07Impl() {
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.3.0<< 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.10.23-11:44:39<< */
* Build with Nalu version >>2.3.0<< at >>2020.10.23-11:44:39<< */
public final class ApplicationWithComposite07Impl extends AbstractApplication<MockContext> implements ApplicationWithComposite07 {
public ApplicationWithComposite07Impl() {
super();
Expand All @@ -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.3.0<< used to generate this source");
ClientLogger.get().logDetailed(sb01.toString(), 0);
ClientLogger.get().logDetailed("=================================================================================", 0);
ClientLogger.get().logDetailed("", 0);
Expand Down
Loading

0 comments on commit 2cf8f6d

Please sign in to comment.