release version 1.10.0
This commit is contained in:
@ -3,7 +3,7 @@
|
||||
<parent>
|
||||
<groupId>ru.entaxy.esb</groupId>
|
||||
<artifactId>underlying</artifactId>
|
||||
<version>1.9.0</version>
|
||||
<version>1.10.0</version>
|
||||
</parent>
|
||||
<groupId>ru.entaxy.esb.underlying</groupId>
|
||||
<artifactId>entaxy-underlying-features</artifactId>
|
||||
@ -71,33 +71,36 @@
|
||||
<version>8.7</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-antrun-plugin</artifactId>
|
||||
<executions>
|
||||
<!--
|
||||
combine resulting org.apache.karaf.features.repos.cfg
|
||||
from fragments in ${project.build.directory}/temp/org.apache.karaf.features.repos
|
||||
-->
|
||||
|
||||
<execution>
|
||||
<id>put-feature-content</id>
|
||||
<phase>generate-resources</phase>
|
||||
<goals>
|
||||
<goal>run</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<target>
|
||||
<loadfile property="replacementsContent" srcFile="${project.build.directory}/support-generated/org.apache.karaf.features.xml" />
|
||||
<echo>${replacementsContent}</echo>
|
||||
<property name="replacePattern"><feature\s.*name="entaxy-underlying-replacements"[^>]*>.*</feature></property>
|
||||
<replaceregexp file="src/main/features/replacements.xml" match="${replacePattern}" replace="${replacementsContent}" flags="gs" byline="false" />
|
||||
</target>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugin>
|
||||
<!-- The following task is disabled because an error occurred during the build:
|
||||
[ERROR] [replaceregexp] The following file is missing: 'entaxy-framework/underlying/entaxy-underlying-features/src/main/features/replacements.xml'
|
||||
and no one remembers what this task is for -->
|
||||
<!-- <plugin>-->
|
||||
<!-- <groupId>org.apache.maven.plugins</groupId>-->
|
||||
<!-- <artifactId>maven-antrun-plugin</artifactId>-->
|
||||
<!-- <executions>-->
|
||||
<!-- <!– -->
|
||||
<!-- combine resulting org.apache.karaf.features.repos.cfg-->
|
||||
<!-- from fragments in ${project.build.directory}/temp/org.apache.karaf.features.repos -->
|
||||
<!-- –>-->
|
||||
<!-- -->
|
||||
<!-- <execution>-->
|
||||
<!-- <id>put-feature-content</id>-->
|
||||
<!-- <phase>generate-resources</phase>-->
|
||||
<!-- <goals>-->
|
||||
<!-- <goal>run</goal>-->
|
||||
<!-- </goals>-->
|
||||
<!-- <configuration>-->
|
||||
<!-- <target>-->
|
||||
<!-- <loadfile property="replacementsContent" srcFile="${project.build.directory}/support-generated/org.apache.karaf.features.xml" />-->
|
||||
<!-- <echo>${replacementsContent}</echo> -->
|
||||
<!-- <property name="replacePattern"><feature\s.*name="entaxy-underlying-replacements"[^>]*>.*</feature></property>-->
|
||||
<!-- <replaceregexp file="src/main/features/replacements.xml" match="${replacePattern}" replace="${replacementsContent}" flags="gs" byline="false" />-->
|
||||
<!-- </target>-->
|
||||
<!-- </configuration>-->
|
||||
<!-- </execution>-->
|
||||
<!-- </executions>-->
|
||||
<!-- </plugin> -->
|
||||
</plugins>
|
||||
</build>
|
||||
|
||||
|
@ -3,7 +3,7 @@
|
||||
~~~~~~licensing~~~~~~
|
||||
entaxy-karaf-features
|
||||
==========
|
||||
Copyright (C) 2020 - 2023 EmDev LLC
|
||||
Copyright (C) 2020 - 2024 EmDev LLC
|
||||
==========
|
||||
You may not use this file except in accordance with the License Terms of the Copyright
|
||||
Holder located at: https://entaxy.ru/eula . All copyrights, all intellectual property
|
||||
@ -32,6 +32,8 @@
|
||||
xsi:schemaLocation="http://karaf.apache.org/xmlns/features/v1.6.0 http://karaf.apache.org/xmlns/features/v1.6.0">
|
||||
|
||||
<feature name="entaxy-underlying-configuration" version="${project.version}">
|
||||
<bundle dependency="true">mvn:org.apache.felix/org.apache.felix.framework/5.6.12-ENTAXY</bundle>
|
||||
|
||||
<configfile finalname="${karaf.etc}/jre.properties" override="true">
|
||||
mvn:ru.entaxy.esb.underlying/entaxy-underlying-configuration/${project.version}/properties/jre
|
||||
</configfile>
|
||||
@ -48,7 +50,7 @@
|
||||
<configfile finalname="${karaf.etc}/org.apache.karaf.features.repos.cfg" override="true">
|
||||
mvn:ru.entaxy.esb.underlying/entaxy-underlying-configuration/${project.version}/cfg/org.apache.karaf.features.repos
|
||||
</configfile>
|
||||
<configfile finalname="${karaf.etc}/org.apache.karaf.features.xml" override="true">
|
||||
<configfile finalname="${karaf.etc}/org.apache.karaf.features.xml" override="false">
|
||||
mvn:ru.entaxy.esb.underlying/entaxy-underlying-configuration/${project.version}/xml/org.apache.karaf.features
|
||||
</configfile>
|
||||
|
||||
@ -87,19 +89,26 @@
|
||||
</feature>
|
||||
|
||||
<feature name="entaxy-karaf-commons-support" version="${project.version}">
|
||||
<bundle>mvn:commons-io/commons-io/${commons-io.version}</bundle>
|
||||
<bundle>mvn:commons-codec/commons-codec/${commons-codec.version}</bundle>
|
||||
<bundle>mvn:org.apache.commons/commons-collections4/${commons-collections4.version}</bundle>
|
||||
<!-- bundle>mvn:org.apache.commons/commons-lang3/3.12.0</bundle -->
|
||||
<bundle start-level="25">mvn:commons-io/commons-io/${commons-io.version}</bundle>
|
||||
<bundle start-level="25">mvn:commons-codec/commons-codec/${commons-codec.version}</bundle>
|
||||
<bundle start-level="25">mvn:org.apache.commons/commons-csv/${commons-csv.version}</bundle>
|
||||
<bundle start-level="25">mvn:org.apache.commons/commons-collections4/${commons-collections4.version}</bundle>
|
||||
<bundle start-level="25">mvn:org.apache.commons/commons-lang3/${commons-lang3.version}</bundle>
|
||||
</feature>
|
||||
|
||||
<feature name="entaxy-karaf-liquibase-support" version="${project.version}">
|
||||
<bundle>mvn:org.liquibase/liquibase-core/${liquibase.version}</bundle>
|
||||
<bundle start-level="60">mvn:org.liquibase/liquibase-core/${liquibase.version}</bundle>
|
||||
</feature>
|
||||
|
||||
<feature name="entaxy-karaf-artemis-jms-support" version="${project.version}">
|
||||
<bundle>mvn:org.messaginghub/pooled-jms/1.0.6</bundle>
|
||||
<bundle>mvn:org.apache.commons/commons-pool2/2.6.2</bundle>
|
||||
<feature name="entaxy-karaf-gson-support" version="${project.version}">
|
||||
<bundle start-level="30">mvn:com.google.code.gson/gson/${gson.version}</bundle>
|
||||
</feature>
|
||||
|
||||
<feature name="entaxy-karaf-jms-support" version="${project.version}">
|
||||
<bundle start-level="25">mvn:jakarta.jms/jakarta.jms-api/2.0.3</bundle>
|
||||
<bundle start-level="25">mvn:org.messaginghub/pooled-jms/1.0.6</bundle>
|
||||
<bundle start-level="25">mvn:org.apache.commons/commons-pool2/2.6.2</bundle>
|
||||
<bundle start-level="25">mvn:commons-pool/commons-pool/1.6</bundle>
|
||||
</feature>
|
||||
|
||||
<!-- feature name="entaxy-karaf-db-support" version="${project.version}">
|
||||
@ -108,19 +117,26 @@
|
||||
</feature -->
|
||||
|
||||
<feature name="entaxy-karaf-ignite-support" version="${project.version}">
|
||||
<bundle>mvn:org.apache.ignite/ignite-jcl/${ignite.version}</bundle>
|
||||
<bundle start-level="50">wrap:mvn:org.apache.ignite/ignite-jcl/${ignite.version}$Bundle-SymbolicName=ignite-jcl.wrap&Bundle-Version=${ignite.version}&Export-Package=*;version="${ignite.version}"</bundle>
|
||||
<bundle start-level="50">wrap:mvn:org.apache.ignite/ignite-core/${ignite.version}$Bundle-SymbolicName=ignite-core.wrap&Bundle-Version=${ignite.version}&Export-Package=*;version="${ignite.version}"</bundle>
|
||||
</feature>
|
||||
|
||||
<feature name="entaxy-karaf-jaxb-support" version="${project.version}">
|
||||
<bundle>wrap:mvn:org.jvnet.hyperjaxb3/hyperjaxb3-ejb-runtime/0.6.2</bundle>
|
||||
<bundle>wrap:mvn:org.jvnet.jaxb2_commons/jaxb2-basics-runtime/0.10.0</bundle>
|
||||
<bundle start-level="50">wrap:mvn:org.jvnet.hyperjaxb3/hyperjaxb3-ejb-runtime/0.6.2/$Bundle-SymbolicName=hyperjaxb3-ejb-runtime.wrap&Bundle-Version=0.6.2&Export-Package=*;version="0.6.2"</bundle>
|
||||
<bundle start-level="50">wrap:mvn:org.jvnet.jaxb2_commons/jaxb2-basics-runtime/0.10.0</bundle>
|
||||
</feature>
|
||||
|
||||
<feature name="entaxy-karaf-jackson-support" version="${project.version}">
|
||||
|
||||
<feature prerequisite="true">entaxy-karaf-snakeyaml-support</feature>
|
||||
<feature prerequisite="true">entaxy-karaf-xsom-support</feature>
|
||||
|
||||
<bundle start-level="35">mvn:com.fasterxml.jackson.core/jackson-annotations/${jackson.version}</bundle>
|
||||
<bundle start-level="35">mvn:com.fasterxml.jackson.core/jackson-core/${jackson.version}</bundle>
|
||||
<bundle start-level="35">mvn:com.fasterxml.jackson.core/jackson-databind/${jackson.version}</bundle>
|
||||
<bundle start-level="35">mvn:com.fasterxml.jackson.module/jackson-module-jsonSchema/${jackson.version}</bundle>
|
||||
<bundle start-level="35">wrap:mvn:org.openapitools/jackson-databind-nullable/${jackson-databind-nullable.version}/$Bundle-SymbolicName=jackson-databind-nullable.wrap&Bundle-Version=${jackson-databind-nullable.version}&Export-Package=*;version="${jackson-databind-nullable.version}"</bundle>
|
||||
|
||||
<bundle start-level="35">mvn:com.fasterxml.jackson.jaxrs/jackson-jaxrs-base/${jackson.version}</bundle>
|
||||
<bundle start-level="35">mvn:com.fasterxml.jackson.jaxrs/jackson-jaxrs-json-provider/${jackson.version}</bundle>
|
||||
<bundle start-level="35">mvn:com.fasterxml.jackson.dataformat/jackson-dataformat-yaml/${jackson.version}</bundle>
|
||||
@ -130,19 +146,54 @@
|
||||
</feature>
|
||||
|
||||
<feature name="entaxy-karaf-snakeyaml-support" version="${project.version}">
|
||||
<bundle start-level="35">mvn:org.yaml/snakeyaml/${snakeyaml1.version}</bundle>
|
||||
<bundle start-level="35">mvn:org.yaml/snakeyaml/${snakeyaml2.version}</bundle>
|
||||
<!-- @NOT_NEEDED -->
|
||||
<!--
|
||||
<bundle start-level="25">mvn:org.yaml/snakeyaml/${snakeyaml1.version}</bundle>
|
||||
-->
|
||||
<bundle start-level="25">mvn:org.yaml/snakeyaml/${snakeyaml2.version}</bundle>
|
||||
</feature>
|
||||
|
||||
<feature name="entaxy-karaf-validation-support" version="${project.version}">
|
||||
<bundle start-level="10">mvn:javax.validation/validation-api/${javax.validation-api.version}</bundle>
|
||||
<bundle start-level="10">mvn:jakarta.validation/jakarta.validation-api/2.0.2</bundle>
|
||||
</feature>
|
||||
|
||||
<feature name="entaxy-karaf-swagger-support" version="${project.version}">
|
||||
<bundle start-level="10">mvn:javax.validation/validation-api/${javax.validation-api.version}</bundle>
|
||||
<bundle start-level="50">mvn:io.github.classgraph/classgraph/${classgraph.version}</bundle>
|
||||
<feature prerequisite="true">entaxy-karaf-validation-support</feature>
|
||||
<bundle start-level="50">mvn:io.github.classgraph/classgraph/${classgraph.version}</bundle>
|
||||
<bundle start-level="50">wrap:mvn:org.openapitools/jackson-databind-nullable/${jackson-databind-nullable.version}/$Bundle-SymbolicName=jackson-databind-nullable.wrap&Bundle-Version=${jackson-databind-nullable.version}&Export-Package=*;version="${jackson-databind-nullable.version}"</bundle>
|
||||
<bundle start-level="50">mvn:com.ibm.icu/icu4j/${icu4j.version}</bundle>
|
||||
<bundle start-level="50">mvn:io.swagger/swagger-annotations/${swagger1.version}</bundle>
|
||||
<bundle start-level="50">mvn:io.swagger.core.v3/swagger-annotations/${swagger.v3.version}</bundle>
|
||||
<bundle start-level="50">mvn:io.swagger.core.v3/swagger-core/${swagger.v3.version}</bundle>
|
||||
<bundle start-level="50">mvn:ru.entaxy.bundles-repacked/ru.entaxy.bundles-repacked.io.swagger.core.v3.swagger-core.${swagger.v3.version}.entaxy/${swagger.v3.version}-ENTAXY</bundle>
|
||||
<bundle start-level="50">mvn:io.swagger.core.v3/swagger-models/${swagger.v3.version}</bundle>
|
||||
<bundle start-level="50">mvn:io.swagger.core.v3/swagger-integration/${swagger.v3.version}</bundle>
|
||||
<bundle start-level="50">mvn:io.swagger.core.v3/swagger-jaxrs2/${swagger.v3.version}</bundle>
|
||||
</feature>
|
||||
|
||||
<feature name="entaxy-karaf-healthcheck-support" version="${project.version}" start-level="50">
|
||||
<feature prerequisite="true">scr</feature>
|
||||
<feature prerequisite="true">http</feature>
|
||||
<feature prerequisite="true">eventadmin</feature>
|
||||
<feature prerequisite="true">entaxy-karaf-commons-support</feature>
|
||||
<bundle>mvn:org.apache.felix/org.apache.felix.healthcheck.api/2.0.4</bundle>
|
||||
<bundle>mvn:org.apache.felix/org.apache.felix.healthcheck.core/2.0.12</bundle>
|
||||
<bundle>mvn:org.apache.felix/org.apache.felix.healthcheck.generalchecks/2.0.14</bundle>
|
||||
<bundle>wrap:mvn:org.apache.felix/org.apache.felix.healthcheck.annotation/2.0.0/$Bundle-SymbolicName=org.apache.felix.healthcheck.annotation.wrap&Bundle-Version=2.0.0&Export-Package=*;version="2.0.0"</bundle>
|
||||
</feature>
|
||||
|
||||
<feature name="entaxy-karaf-jgroup-support" version="${project.version}">
|
||||
<bundle start-level="50">wrap:mvn:org.jgroups/jgroups/${jgroups.version}$Bundle-SymbolicName=JGroups.wrap&Bundle-Version=${jgroups.version}&Export-Package=*;version="${jgroups.version}"</bundle>
|
||||
<!-- <bundle start-level="50">mvn:org.apache.camel/camel-jgroups/${camel.version}</bundle> -->
|
||||
</feature>
|
||||
|
||||
<feature name="entaxy-karaf-eclipse-support">
|
||||
<bundle start-level="30">mvn:org.eclipse.jdt/ecj/3.24.0</bundle>
|
||||
</feature>
|
||||
|
||||
<feature name="entaxy-karaf-xsom-support">
|
||||
<bundle start-level="30">mvn:ru.entaxy.com.sun.xsom/xsom/${project.version}</bundle>
|
||||
<bundle start-level="30">mvn:ru.entaxy.bundles-repacked/ru.entaxy.bundles-repacked.relaxngDatatype-20020414.entaxy/20020414-ENTAXY</bundle>
|
||||
</feature>
|
||||
|
||||
</features>
|
||||
|
@ -1,84 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--
|
||||
~~~~~~licensing~~~~~~
|
||||
entaxy-karaf-features
|
||||
==========
|
||||
Copyright (C) 2020 - 2023 EmDev LLC
|
||||
==========
|
||||
You may not use this file except in accordance with the License Terms of the Copyright
|
||||
Holder located at: https://entaxy.ru/eula . All copyrights, all intellectual property
|
||||
rights to the Software and any copies are the property of the Copyright Holder. Unless
|
||||
it is explicitly allowed the Copyright Holder, the User is prohibited from using the
|
||||
Software for commercial purposes to provide services to third parties.
|
||||
|
||||
The Copyright Holder hereby declares that the Software is provided on an "AS IS".
|
||||
Under no circumstances does the Copyright Holder guarantee or promise that the
|
||||
Software provided by him will be suitable or not suitable for the specific purposes
|
||||
of the User, that the Software will meet all commercial and personal subjective
|
||||
expectations of the User, that the Software will work properly, without technical
|
||||
errors, quickly and uninterruptedly.
|
||||
|
||||
Under no circumstances shall the Copyright Holder or its Affiliates is not liable
|
||||
to the User for any direct or indirect losses of the User, his expenses or actual
|
||||
damage, including, downtime; loss of bussines; lost profit; lost earnings; loss
|
||||
or damage to data, property, etc.
|
||||
~~~~~~/licensing~~~~~~
|
||||
-->
|
||||
|
||||
|
||||
<features name="entaxy-underlying-replacements-${project.version}"
|
||||
xmlns="http://karaf.apache.org/xmlns/features/v1.6.0"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://karaf.apache.org/xmlns/features/v1.6.0 http://karaf.apache.org/xmlns/features/v1.6.0">
|
||||
|
||||
<feature xmlns="http://karaf.apache.org/xmlns/features/v1.6.0"
|
||||
name="entaxy-underlying-replacements"
|
||||
version="${project.version}">
|
||||
<!--
|
||||
this feature as automatically generated
|
||||
DON'T EDIT IT !!!
|
||||
-->
|
||||
<bundle>mvn:org.apache.karaf.cellar/org.apache.karaf.cellar.bundle/4.2.1-ENTAXY</bundle>
|
||||
<bundle>mvn:com.fasterxml.jackson.core/jackson-annotations/2.15.2</bundle>
|
||||
<bundle>mvn:com.fasterxml.jackson.core/jackson-core/2.15.2</bundle>
|
||||
<bundle>mvn:com.fasterxml.jackson.core/jackson-databind/2.15.2</bundle>
|
||||
<bundle>mvn:com.fasterxml.jackson.jaxrs/jackson-jaxrs-base/2.15.2</bundle>
|
||||
<bundle>mvn:com.fasterxml.jackson.jaxrs/jackson-jaxrs-json-provider/2.15.2</bundle>
|
||||
<bundle>mvn:com.fasterxml.jackson.dataformat/jackson-dataformat-yaml/2.15.2</bundle>
|
||||
<bundle>mvn:com.fasterxml.jackson.datatype/jackson-datatype-jsr310/2.15.2</bundle>
|
||||
<bundle>mvn:org.yaml/snakeyaml/1.33</bundle>
|
||||
<bundle>mvn:org.javassist/javassist/3.29.0-GA</bundle>
|
||||
<bundle>mvn:org.apache.commons/commons-lang3/3.12.0</bundle>
|
||||
<bundle>mvn:commons-codec/commons-codec/1.14</bundle>
|
||||
<bundle>mvn:io.swagger/swagger-annotations/1.6.11</bundle>
|
||||
<bundle>mvn:io.swagger.core.v3/swagger-annotations/2.2.11</bundle>
|
||||
<bundle>mvn:io.swagger.core.v3/swagger-core/2.2.11</bundle>
|
||||
<bundle>mvn:io.swagger.core.v3/swagger-models/2.2.11</bundle>
|
||||
<bundle>mvn:io.swagger.core.v3/swagger-integration/2.2.11</bundle>
|
||||
<bundle>mvn:io.swagger.core.v3/swagger-jaxrs2/2.2.11</bundle>
|
||||
<bundle>mvn:io.github.classgraph/classgraph/4.8.160</bundle>
|
||||
<bundle>mvn:org.webjars/swagger-ui/3.52.5</bundle>
|
||||
<bundle>mvn:io.netty/netty-common/4.1.51.Final</bundle>
|
||||
<bundle>mvn:io.netty/netty-buffer/4.1.51.Final</bundle>
|
||||
<bundle>mvn:io.netty/netty-resolver/4.1.51.Final</bundle>
|
||||
<bundle>mvn:io.netty/netty-transport/4.1.51.Final</bundle>
|
||||
<bundle>mvn:io.netty/netty-handler/4.1.51.Final</bundle>
|
||||
<bundle>mvn:io.netty/netty-codec/4.1.51.Final</bundle>
|
||||
<bundle>mvn:io.netty/netty-transport-native-epoll/4.1.51.Final</bundle>
|
||||
<bundle>mvn:io.netty/netty-transport-native-kqueue/4.1.51.Final</bundle>
|
||||
<bundle>mvn:io.netty/netty-codec-http/4.1.51.Final</bundle>
|
||||
<bundle>mvn:io.netty/netty-transport-native-unix-common/4.1.51.Final</bundle>
|
||||
<bundle>mvn:javax.annotation/javax.annotation-api/1.3.2</bundle>
|
||||
<bundle>mvn:javax.mail/mail/1.4.7</bundle>
|
||||
<bundle>mvn:com.h2database/h2/1.4.199-ENTAXY</bundle>
|
||||
<bundle>mvn:org.apache.camel/camel-base/3.4.5-ENTAXY</bundle>
|
||||
<bundle>mvn:org.apache.camel/camel-quartz/3.4.5-ENTAXY</bundle>
|
||||
<bundle>mvn:org.apache.camel/camel-core-engine/3.4.5-ENTAXY</bundle>
|
||||
<bundle>mvn:org.apache.camel/camel-master/3.4.5-ENTAXY</bundle>
|
||||
<bundle>mvn:org.apache.camel.karaf/camel-cxf-blueprint/3.4.5-ENTAXY</bundle>
|
||||
<bundle>mvn:org.codehaus.woodstox/woodstox-core-asl/4.4.1-ENTAXY</bundle>
|
||||
<bundle>mvn:org.apache.activemq/artemis-server-osgi/2.19.0-ENTAXY</bundle>
|
||||
<bundle>mvn:org.apache.karaf.cave.repository/org.apache.karaf.cave.repository.service/4.2.1-ENTAXY</bundle>
|
||||
</feature>
|
||||
|
||||
</features>
|
@ -3,7 +3,7 @@
|
||||
~~~~~~licensing~~~~~~
|
||||
entaxy-underlying-features
|
||||
==========
|
||||
Copyright (C) 2020 - 2023 EmDev LLC
|
||||
Copyright (C) 2020 - 2024 EmDev LLC
|
||||
==========
|
||||
You may not use this file except in accordance with the License Terms of the Copyright
|
||||
Holder located at: https://entaxy.ru/eula . All copyrights, all intellectual property
|
||||
|
Reference in New Issue
Block a user