Skip to content

Instantly share code, notes, and snippets.

@ANierbeck
Created October 2, 2016 09:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ANierbeck/ba9bb07993c311f3060d438597930216 to your computer and use it in GitHub Desktop.
Save ANierbeck/ba9bb07993c311f3060d438597930216 to your computer and use it in GitHub Desktop.
<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>de.nierbeck.karaf.decanter</groupId>
<artifactId>Karaf-Decanter-Runtime</artifactId>
<version>0.1.0-SNAPSHOT</version>
</parent>
<artifactId>Decanter-Runtime</artifactId>
<packaging>karaf-assembly</packaging>
<build>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>false</filtering>
<includes>
<include>**/*</include>
</includes>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>2.6</version>
<executions>
<execution>
<id>process-resources</id>
<goals>
<goal>resources</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.karaf.tooling</groupId>
<artifactId>karaf-maven-plugin</artifactId>
<configuration>
<descriptors>
<descriptor>mvn:org.apache.karaf.features/framework/${dependency.karaf.version}/xml/features</descriptor>
<descriptor>mvn:org.apache.karaf.features/standard/${dependency.karaf.version}/xml/features</descriptor>
<descriptor>mvn:org.apache.karaf.features/enterprise/${dependency.karaf.version}/xml/features</descriptor>
<descriptor>mvn:org.apache.karaf.decanter/apache-karaf-decanter/${dependency.karaf.version}/xml/features</descriptor>
</descriptors>
<installedFeatures>
<feature>wrapper</feature>
</installedFeatures>
<bootFeatures>
<feature>minimal</feature>
<feartue>decanter-appender-elasticsearch-rest</feartue>
<feature>decanter-collector-jmx</feature>
<feature>decanter-collector-process</feature>
</bootFeatures>
</configuration>
</plugin>
</plugins>
</build>
</project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment