ENTAXY-374 release 1.8.2
This commit is contained in:
289
pom.xml
289
pom.xml
@ -5,7 +5,7 @@
|
||||
|
||||
<groupId>ru.entaxy.esb</groupId>
|
||||
<artifactId>root</artifactId>
|
||||
<version>1.8.1</version>
|
||||
<version>1.8.2</version>
|
||||
<packaging>pom</packaging>
|
||||
|
||||
<name>ENTAXY :: ESB :: ROOT</name>
|
||||
@ -28,13 +28,17 @@
|
||||
|
||||
<!-- @TODO consider import Karaf BOM to root/pom/dependencyManagement -->
|
||||
<felix.configadmin.version>1.9.16</felix.configadmin.version>
|
||||
<felix.scr.version>2.1.20</felix.scr.version>
|
||||
|
||||
<!-- osgi -->
|
||||
<osgi.version>6.0.0</osgi.version>
|
||||
<osgi.compendium.version>5.0.0</osgi.compendium.version>
|
||||
<osgi.service.component.annotations.version>1.4.0</osgi.service.component.annotations.version>
|
||||
|
||||
<camel.version>3.4.5</camel.version>
|
||||
<servicemix-specs-version>2.9.0</servicemix-specs-version>
|
||||
<caffeine-version>2.8.4</caffeine-version>
|
||||
<activemq.version>2.17.0</activemq.version>
|
||||
<osgi.version>6.0.0</osgi.version>
|
||||
<osgi.compendium.version>5.0.0</osgi.compendium.version>
|
||||
<activemq.version>2.19.0</activemq.version>
|
||||
<cxf.version>3.3.6</cxf.version>
|
||||
<hibernate.version>5.2.17.Final</hibernate.version>
|
||||
<jpa.version>2.1.0</jpa.version>
|
||||
@ -48,6 +52,7 @@
|
||||
<gson.version>2.8.5</gson.version>
|
||||
<liquibase.version>3.6.3</liquibase.version>
|
||||
<mssql.version>7.4.1.jre8</mssql.version>
|
||||
<freemarker.version>2.3.31</freemarker.version>
|
||||
<!-- postgresql.version>42.2.5</postgresql.version -->
|
||||
<!--
|
||||
version should be 42.2.7 or higher
|
||||
@ -76,6 +81,8 @@
|
||||
<javax.jws-api.version>1.1</javax.jws-api.version>
|
||||
<jaxws.version>2.3.3</jaxws.version>
|
||||
|
||||
<commons-collections4.version>4.4</commons-collections4.version>
|
||||
|
||||
<!-- bundle settings -->
|
||||
<bundle.osgi.import.pkg>*</bundle.osgi.import.pkg>
|
||||
<bundle.osgi.private.pkg>{local-packages}</bundle.osgi.private.pkg>
|
||||
@ -98,6 +105,10 @@
|
||||
<maven-resources-plugin.version>3.1.0</maven-resources-plugin.version>
|
||||
<maven-dependency-plugin.version>3.1.2</maven-dependency-plugin.version>
|
||||
<build-helper-maven-plugin.version>3.2.0</build-helper-maven-plugin.version>
|
||||
<maven-war-plugin.version>3.3.2</maven-war-plugin.version>
|
||||
|
||||
<!-- ui -->
|
||||
<hawtio.version>2.14.1</hawtio.version>
|
||||
</properties>
|
||||
|
||||
<dependencyManagement>
|
||||
@ -109,6 +120,31 @@
|
||||
<version>${osgi.version}</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.osgi</groupId>
|
||||
<artifactId>org.osgi.service.component.annotations</artifactId>
|
||||
<version>${osgi.service.component.annotations.version}</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
|
||||
<!-- Karaf -->
|
||||
<dependency>
|
||||
<groupId>org.apache.karaf.features</groupId>
|
||||
<artifactId>org.apache.karaf.features.core</artifactId>
|
||||
<version>${karaf.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.karaf</groupId>
|
||||
<artifactId>org.apache.karaf.util</artifactId>
|
||||
<version>${karaf.version}</version>
|
||||
</dependency>
|
||||
|
||||
<!-- Felix -->
|
||||
<dependency>
|
||||
<groupId>org.apache.felix</groupId>
|
||||
<artifactId>org.apache.felix.scr</artifactId>
|
||||
<version>${felix.scr.version}</version>
|
||||
</dependency>
|
||||
|
||||
<!-- Camel BOM -->
|
||||
<dependency>
|
||||
@ -221,23 +257,18 @@
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
|
||||
|
||||
<!-- others -->
|
||||
<dependency>
|
||||
<groupId>com.google.code.gson</groupId>
|
||||
<artifactId>gson</artifactId>
|
||||
<version>${gson.version}</version>
|
||||
</dependency>
|
||||
|
||||
<!-- Karaf -->
|
||||
<dependency>
|
||||
<groupId>org.apache.karaf.features</groupId>
|
||||
<artifactId>org.apache.karaf.features.core</artifactId>
|
||||
<version>${karaf.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.karaf</groupId>
|
||||
<artifactId>org.apache.karaf.util</artifactId>
|
||||
<version>${karaf.version}</version>
|
||||
</dependency>
|
||||
<groupId>org.apache.commons</groupId>
|
||||
<artifactId>commons-collections4</artifactId>
|
||||
<version>${commons-collections4.version}</version>
|
||||
</dependency>
|
||||
|
||||
</dependencies>
|
||||
</dependencyManagement>
|
||||
@ -297,36 +328,41 @@
|
||||
<artifactId>maven-assembly-plugin</artifactId>
|
||||
<version>${maven-assembly-plugin.version}</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-antrun-plugin</artifactId>
|
||||
<version>${maven-antrun-plugin.version}</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-antrun-plugin</artifactId>
|
||||
<version>${maven-antrun-plugin.version}</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-resources-plugin</artifactId>
|
||||
<version>${maven-resources-plugin.version}</version>
|
||||
</plugin>
|
||||
<version>${maven-resources-plugin.version}</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>license-maven-plugin</artifactId>
|
||||
<version>2.0.0</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.karaf.tooling</groupId>
|
||||
<artifactId>karaf-services-maven-plugin</artifactId>
|
||||
<version>${karaf.version}</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>com.soebes.maven.plugins</groupId>
|
||||
<artifactId>iterator-maven-plugin</artifactId>
|
||||
<version>0.5.1</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>build-helper-maven-plugin</artifactId>
|
||||
<version>${build-helper-maven-plugin.version}</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.karaf.tooling</groupId>
|
||||
<artifactId>karaf-services-maven-plugin</artifactId>
|
||||
<version>${karaf.version}</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>com.soebes.maven.plugins</groupId>
|
||||
<artifactId>iterator-maven-plugin</artifactId>
|
||||
<version>0.5.1</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>build-helper-maven-plugin</artifactId>
|
||||
<version>${build-helper-maven-plugin.version}</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-war-plugin</artifactId>
|
||||
<version>${maven-war-plugin.version}</version>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</pluginManagement>
|
||||
<plugins>
|
||||
@ -735,7 +771,7 @@
|
||||
<id>license</id>
|
||||
<activation>
|
||||
<property>
|
||||
<name>!skipLicence</name>
|
||||
<name>!skipLicense</name>
|
||||
</property>
|
||||
</activation>
|
||||
|
||||
@ -763,8 +799,8 @@
|
||||
<filtering>false</filtering>
|
||||
<directory>${project.build.directory}/generated-sources/license</directory>
|
||||
|
||||
<!-- (1) only META-INF/LICENCE is included due to potential bug
|
||||
(see comment below at "add-third-party" goal of licence-maven-plugin configuration),
|
||||
<!-- (1) only META-INF/LICENSE is included due to potential bug
|
||||
(see comment below at "add-third-party" goal of license-maven-plugin configuration),
|
||||
so to add META-INF/DEPENDENCIES also we have to treat them all as resources -->
|
||||
<includes>
|
||||
<include>META-INF/*</include>
|
||||
@ -899,7 +935,7 @@
|
||||
<licenseSet>
|
||||
<!-- header>com/mycila/maven/plugin/license/templates/APACHE-2.txt</header -->
|
||||
<inlineHeader>~~~~~~licensing~~~~~~
|
||||
${project.artifactId}
|
||||
${license.projectName}
|
||||
==========
|
||||
Copyright (C) 2020 - ${year} ${owner}
|
||||
==========
|
||||
@ -1179,8 +1215,175 @@ limitations under the License.
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
</profile>
|
||||
|
||||
<!-- begin of maven-version-plugin -->
|
||||
<profile>
|
||||
<id>setVersion</id>
|
||||
<activation>
|
||||
<activeByDefault>false</activeByDefault>
|
||||
</activation>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>versions-maven-plugin</artifactId>
|
||||
<inherited>false</inherited>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>set-version</id>
|
||||
<phase>validate</phase>
|
||||
<goals>
|
||||
<goal>set</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<processAllModules>true</processAllModules>
|
||||
<processParent>true</processParent>
|
||||
<processFromLocalAggregationRoot>false</processFromLocalAggregationRoot>
|
||||
</configuration>
|
||||
</execution>
|
||||
<execution>
|
||||
<id>update-children</id>
|
||||
<phase>validate</phase>
|
||||
<goals>
|
||||
<goal>update-child-modules</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
<profile>
|
||||
<id>removeSnapshot</id>
|
||||
<activation>
|
||||
<activeByDefault>false</activeByDefault>
|
||||
</activation>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>build-helper-maven-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>parse-version</id>
|
||||
<phase>validate</phase>
|
||||
<goals>
|
||||
<goal>parse-version</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>versions-maven-plugin</artifactId>
|
||||
<inherited>false</inherited>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>set-version</id>
|
||||
<phase>validate</phase>
|
||||
<goals>
|
||||
<goal>set</goal>
|
||||
<!-- goal>update-child-modules</goal -->
|
||||
</goals>
|
||||
<configuration>
|
||||
<processAllModules>false</processAllModules>
|
||||
<processParent>true</processParent>
|
||||
<processFromLocalAggregationRoot>false</processFromLocalAggregationRoot>
|
||||
<newVersion>${parsedVersion.majorVersion}.${parsedVersion.minorVersion}.${parsedVersion.incrementalVersion}</newVersion>
|
||||
<removeSnapshot>true</removeSnapshot>
|
||||
</configuration>
|
||||
</execution>
|
||||
<execution>
|
||||
<id>update-children</id>
|
||||
<phase>validate</phase>
|
||||
<goals>
|
||||
<goal>update-child-modules</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
<profile>
|
||||
<id>nextSnapshot</id>
|
||||
<activation>
|
||||
<activeByDefault>false</activeByDefault>
|
||||
</activation>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>build-helper-maven-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>parse-version</id>
|
||||
<phase>validate</phase>
|
||||
<goals>
|
||||
<goal>parse-version</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>versions-maven-plugin</artifactId>
|
||||
<inherited>false</inherited>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>set-version</id>
|
||||
<phase>validate</phase>
|
||||
<goals>
|
||||
<goal>set</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<processAllModules>true</processAllModules>
|
||||
<processParent>true</processParent>
|
||||
<processFromLocalAggregationRoot>false</processFromLocalAggregationRoot>
|
||||
<!-- newVersion>${parsedVersion.majorVersion}.${parsedVersion.minorVersion}.${parsedVersion.nextIncrementalVersion}-SNAPSHOT</newVersion -->
|
||||
<newVersion>${parsedVersion.majorVersion}.${parsedVersion.minorVersion}.${parsedVersion.incrementalVersion}</newVersion>
|
||||
<nextSnapshot>true</nextSnapshot>
|
||||
</configuration>
|
||||
</execution>
|
||||
<execution>
|
||||
<id>update-children</id>
|
||||
<phase>validate</phase>
|
||||
<goals>
|
||||
<goal>update-child-modules</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
<profile>
|
||||
<id>revert</id>
|
||||
<activation>
|
||||
<activeByDefault>false</activeByDefault>
|
||||
</activation>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<artifactId>versions-maven-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<phase>validate</phase>
|
||||
<goals><goal>revert</goal></goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
<!-- end of maven-version-plugin -->
|
||||
</profiles>
|
||||
<!-- TODO Imrove it!!! -->
|
||||
<organization>
|
||||
|
Reference in New Issue
Block a user