ENTAXY-480 release version 1.8.3

This commit is contained in:
2023-08-03 04:45:45 +03:00
parent 5844a2e5cf
commit 3cc15f7459
236 changed files with 21106 additions and 0 deletions

View File

@ -0,0 +1,63 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
~~~~~~licensing~~~~~~
entaxy-karaf-features
==========
Copyright (C) 2020 - 2023 EmDev LLC
==========
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
~~~~~~/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.felix/org.apache.felix.configadmin/1.9.16-ENTAXY</bundle>
<bundle>mvn:org.apache.aries.blueprint/org.apache.aries.blueprint.cm/1.3.2-ENTAXY</bundle>
<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.10.5</bundle>
<bundle>mvn:com.fasterxml.jackson.core/jackson-core/2.10.5</bundle>
<bundle>mvn:com.fasterxml.jackson.core/jackson-databind/2.10.5</bundle>
<bundle>mvn:com.fasterxml.jackson.jaxrs/jackson-jaxrs-base/2.10.3</bundle>
<bundle>mvn:com.fasterxml.jackson.jaxrs/jackson-jaxrs-json-provider/2.10.3</bundle>
<bundle>mvn:commons-codec/commons-codec/1.14</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-core-engine/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>
</feature>
</features>

View File

@ -0,0 +1,49 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
~~~~~~licensing~~~~~~
entaxy-underlying-features
==========
Copyright (C) 2020 - 2023 EmDev LLC
==========
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
~~~~~~/licensing~~~~~~
-->
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:fn="http://www.w3.org/2005/xpath-functions" xmlns:fp="http://karaf.apache.org/xmlns/features-processing/v1.0.0" exclude-result-prefixes="xs fn fp">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes" omit-xml-declaration="yes"/>
<xsl:template match="/">
<feature name="entaxy-underlying-replacements" xmlns="http://karaf.apache.org/xmlns/features/v1.6.0">
<xsl:attribute name="version">${project.version}</xsl:attribute>
<xsl:text>
</xsl:text>
<xsl:comment>
this feature as automatically generated
DON'T EDIT IT !!!
</xsl:comment>
<xsl:text>
</xsl:text>
<xsl:apply-templates select="child::node()" />
</feature>
</xsl:template>
<xsl:template match="//fp:bundleReplacements/fp:bundle">
<bundle xmlns="http://karaf.apache.org/xmlns/features/v1.6.0"><xsl:value-of select="./@replacement" /></bundle>
</xsl:template>
<xsl:template name="default-remove" match="node()|@*">
<xsl:apply-templates select="node()|@*" />
</xsl:template>
</xsl:stylesheet>