eclipse-emf-kar
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>hu.blackbelt.karaf.features</groupId> <artifactId>eclipse-emf-kar</artifactId> <version>2.18.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>hu.blackbelt.karaf.features</groupId> <artifactId>eclipse-emf</artifactId> <version>2.18.0</version> <relativePath>../</relativePath> </parent> <artifactId>eclipse-emf-kar</artifactId> <packaging>kar</packaging> <name>Eclipse Modeling Framework Karaf KAR assembly</name> <build> <plugins> <plugin> <artifactId>maven-dependency-plugin</artifactId> <executions> <execution> <id>copy-feature</id> <goals> <goal>copy</goal> </goals> <phase>process-resources</phase> <configuration> <artifactItems> <artifactItem> <groupId>${project.groupId}</groupId> <artifactId>${project.parent.artifactId}-features</artifactId> <classifier>features</classifier> <type>xml</type> <version>${project.version}</version> <overWrite>false</overWrite> <outputDirectory>${project.build.directory}/unpacked-feature</outputDirectory> <destFileName>feature.xml</destFileName> </artifactItem> </artifactItems> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.karaf.tooling</groupId> <artifactId>karaf-maven-plugin</artifactId> <extensions>true</extensions> <configuration> <featuresFile>${project.build.directory}/unpacked-feature/feature.xml</featuresFile> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>${project.groupId}</groupId> <artifactId>${project.parent.artifactId}-features</artifactId> <version>${project.version}</version> <type>xml</type> <classifier>features</classifier> <scope>runtime</scope> </dependency> </dependencies> </project>