ENTAXY-480 release version 1.8.3

This commit is contained in:
2023-08-03 04:44:09 +03:00
parent 603889d627
commit 5844a2e5cf
2546 changed files with 11242 additions and 207556 deletions

View File

@ -4,7 +4,7 @@
<parent>
<groupId>ru.entaxy.esb</groupId>
<artifactId>ui</artifactId>
<version>1.8.2.2</version>
<version>1.8.3</version>
</parent>
<groupId>ru.entaxy.esb.ui</groupId>
<artifactId>entaxy-hawtio</artifactId>
@ -46,42 +46,130 @@
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>license-maven-plugin</artifactId>
<executions>
<execution>
<id>update-file-header</id>
<goals>
<goal>update-file-header</goal>
</goals>
<phase>process-sources</phase>
<configuration>
<excludes combine.self="override">
<!--
we exclude org.apache.karaf.features.repos.cfg
for it will be used as a fragment
-->
<exclude>**/org.apache.karaf.features.repos.cfg</exclude>
<exclude>**/*.cfg</exclude>
<exclude>**/*.json1</exclude>
<!-- *.ftl files will be processed by the next plugin -->
<exclude>**/*.ftl</exclude>
</excludes>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>attach-cfg</id>
<activation>
<file>
<exists>src/main/resources/etc/org.apache.karaf.features.repos.cfg</exists>
</file>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<executions>
<execution>
<id>attach-cfg-hawtio</id>
<phase>package</phase>
<goals>
<goal>attach-artifact</goal>
</goals>
<configuration>
<runOnlyAtExecutionRoot>false</runOnlyAtExecutionRoot>
<artifacts>
<artifact>
<file>target/classes/etc/org.apache.karaf.features.repos.cfg</file>
<type>cfg</type>
<classifier>org.apache.karaf.features.repos</classifier>
</artifact>
</artifacts>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>entaxy-hawtio-license</id>
<activation>
<property>
<name>processLicense</name>
<value>true</value>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>license-maven-plugin</artifactId>
<executions>
<execution>
<id>update-file-header-entaxy-hawtio</id>
<goals>
<goal>update-file-header</goal>
</goals>
<phase>process-sources</phase>
<configuration>
<organizationName>${license.organizationName}</organizationName>
<inceptionYear>${license.inceptionYear}</inceptionYear>
<projectName>${license.projectName}</projectName>
<copyrightOwners>${license.copyrightOwners}</copyrightOwners>
<licenseName>${license.licenseName}</licenseName>
<!-- plugin documentation recommends "true"
but we use "false" to look like Apache sources -->
<addJavaLicenseAfterPackage>false</addJavaLicenseAfterPackage>
<emptyLineAfterHeader>false</emptyLineAfterHeader>
<!-- excludes>
<exclude>**/*.json</exclude>
</excludes-->
<extraExtensions>
<!-- treat *.install files as *.properties -->
<install>properties</install>
</extraExtensions>
<ignoreNoFileToScan>true</ignoreNoFileToScan>
<keepBackup>true</keepBackup>
<processStartTag>${license.processStartTag}</processStartTag>
<processEndTag>${license.processEndTag}</processEndTag>
<sectionDelimiter>${license.sectionDelimiter}</sectionDelimiter>
</configuration>
</execution>
<execution>
<id>update-file-header</id>
<goals>
<goal>update-file-header</goal>
</goals>
<phase>process-sources</phase>
<configuration>
<excludes combine.self="override">
<!--
we exclude org.apache.karaf.features.repos.cfg
for it will be used as a fragment
-->
<exclude>**/org.apache.karaf.features.repos.cfg</exclude>
<exclude>**/*.cfg</exclude>
<exclude>**/*.json1</exclude>
<!-- *.ftl files will be processed by the next plugin -->
<exclude>**/*.ftl</exclude>
</excludes>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<!--
@DISABLED @TO_REMOVE
-->
<profile>
<id>install-hawtio-script</id>
<activation>
<activeByDefault>false</activeByDefault>
<file>
<exists>src/main/scripts/entaxy-hawtio.install</exists>
<exists>src/main/scripts/entaxy-hawtio.install_1</exists>
</file>
</activation>
<build>