ENTAXY-480 release version 1.8.3
This commit is contained in:
@ -3,11 +3,103 @@
|
||||
<parent>
|
||||
<groupId>ru.entaxy.esb</groupId>
|
||||
<artifactId>underlying</artifactId>
|
||||
<version>1.8.2.2</version>
|
||||
<version>1.8.3</version>
|
||||
</parent>
|
||||
<groupId>ru.entaxy.esb.underlying</groupId>
|
||||
<artifactId>entaxy-underlying-features</artifactId>
|
||||
<packaging>pom</packaging>
|
||||
<name>ENTAXY :: UNDERLYING :: FEATURES</name>
|
||||
<description>Features for low-level components and modules for Entaxy</description>
|
||||
|
||||
<build>
|
||||
<plugins>
|
||||
<!-- WE'RE JUST UNPACKING READY-TO-USE RESOURCES FROM entaxy-underlying-configuration -->
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-dependency-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>prepare-org.apache.karaf.features.xml</id>
|
||||
<phase>generate-resources</phase>
|
||||
<goals>
|
||||
<goal>copy</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<artifactItems>
|
||||
<artifactItem>
|
||||
<groupId>ru.entaxy.esb.underlying</groupId>
|
||||
<artifactId>entaxy-underlying-configuration</artifactId>
|
||||
<version>${project.version}</version>
|
||||
<type>xml</type>
|
||||
<classifier>org.apache.karaf.features</classifier>
|
||||
<overWrite>true</overWrite>
|
||||
<outputDirectory>${project.build.directory}/support</outputDirectory>
|
||||
<destFileName>org.apache.karaf.features.xml</destFileName>
|
||||
</artifactItem>
|
||||
</artifactItems>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>xml-maven-plugin</artifactId>
|
||||
<version>1.0.2</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>generate-feature-content</id>
|
||||
<phase>generate-resources</phase>
|
||||
<goals>
|
||||
<goal>transform</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
<configuration>
|
||||
<forceCreation>true</forceCreation>
|
||||
<transformationSets>
|
||||
<transformationSet>
|
||||
<dir>${project.build.directory}/support</dir>
|
||||
<stylesheet>src/main/support/generate_replacements.xslt</stylesheet>
|
||||
<outputDir>${project.build.directory}/support-generated</outputDir>
|
||||
</transformationSet>
|
||||
</transformationSets>
|
||||
</configuration>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>net.sf.saxon</groupId>
|
||||
<artifactId>saxon</artifactId>
|
||||
<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>
|
||||
</plugins>
|
||||
</build>
|
||||
|
||||
|
||||
</project>
|
@ -3,7 +3,7 @@
|
||||
~~~~~~licensing~~~~~~
|
||||
entaxy-karaf-features
|
||||
==========
|
||||
Copyright (C) 2020 - 2021 EmDev LLC
|
||||
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.
|
||||
@ -21,9 +21,9 @@
|
||||
|
||||
|
||||
<features name="entaxy-underlying-features-${project.version}"
|
||||
xmlns="http://karaf.apache.org/xmlns/features/v1.3.0"
|
||||
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.3.0 http://karaf.apache.org/xmlns/features/v1.3.0">
|
||||
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}">
|
||||
<configfile finalname="${karaf.etc}/jre.properties" override="true">
|
||||
|
Reference in New Issue
Block a user