# gradle-karaf-plugin **Repository Path**: mirrors_vlsi/gradle-karaf-plugin ## Basic Information - **Project Name**: gradle-karaf-plugin - **Description**: No description available - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-06-16 - **Last Updated**: 2026-05-24 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README gradle-karaf-plugin =================== image:https://github.com/vlsi/gradle-karaf-plugin/workflows/Build/badge.svg?branch=master[title="Build Status", link="https://github.com/vlsi/gradle-karaf-plugin/actions"] image:https://maven-badges.herokuapp.com/maven-central/io.github.vlsi/gradle-karaf-plugin/badge.svg[title="Maven Central", link="https://maven-badges.herokuapp.com/maven-central/io.github.vlsi/gradle-karaf-plugin"] image:http://img.shields.io/:license-apache-brightgreen.svg[title="License", link="http://www.apache.org/licenses/LICENSE-2.0.html"]image:https://badges.gitter.im/vlsi/gradle-karaf-plugin.svg[link="https://gitter.im/vlsi/gradle-karaf-plugin?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge"] https://github.com/lburgazzoli/gradle-karaf-plugin seems to be abandoned, so this fork resurrects the releases. == Features - [x] Karaf features - [x] Karaf KAR - [ ] Karaf custom distribution - [ ] Nice documentation == Tasks Automatically generate Karaf feature file in /build/karaf/features [source,groovy] ---- gradle generateFeatures ---- Automatically generate Karaf repo (system directory) in /build/karaf/repo [source,groovy] ---- gradle generateRepo ---- Automatically generate Karaf kar file in /build/karaf/kar [source,groovy] ---- gradle generateKar ---- == Description The *gradle-karaf-plugin* is designed to automate the process of creating Apache Karaf *feature*, *repo*, and *kar* files. This plugin generates the desired karaf files by utilizing the native gradle configurations mechanism. As gradle automatically determines all direct and transitive dependencies, a complete list of dependencies is provided to the plugin for a given set of configurations. As OSGi can only install bundles, standard jars must be wrapped to add necessary manifest information specifying the jar's import and export packages. To simply this process Karaf provides a native wrap tool that can be run during jar/bundle installation. This plugin determines if each dependency is already a bundle and adds the _wrap_ tag if it is not (see example below). == Notes - Considering that gradle automatically "promotes" dependency version conflicts, only a single version of a dependency is avalible per each gradle configuration. As OSGi bundles can mandate certain versions of dependencies, it is likely that multiple versions of a jar/bundle are needed. In this case, it is recommended to add another gradle configuration, perhaps "karaf", and specify the other dependency version under this new configuration. Include both configurations to the karaf->features->feature->configurations statement (see example below). This will result in both versions of the dependency being added to the feature/kar file. - Karaf 4 support requires the xsd version be at least '1.3.0'. - This plugin is an extension of the previous https://github.com/vlsi/gradle-karaf-features-plugin[gradle-karaf-feature-plugin^] == Requirements - Gradle 3.0+ == Usage [source,groovy] ---- plugins { id 'io.github.vlsi.karaf' version '0.0.49' } repositories { mavenCentral() } ---- == Example === build.gradle [source,groovy] ---- plugins { id 'java' //required only for runtime configuration id 'io.github.vlsi.karaf' version '0.0.49' } repositories { mavenCentral() } group = 'io.github.vlsi' version = '0.0.1' configurations { foo bar // This will avoid adding transitive dependencies baz { transitive = false } } dependencies { runtime 'com.google.guava:guava:19.0' foo 'commons-io:commons-io:2.4' bar ( 'com.fasterxml.jackson.core:jackson-core:2.7.0', 'com.fasterxml.jackson.core:jackson-databind:2.7.0', 'com.fasterxml.jackson.core:jackson-annotations:2.7.0' ) baz 'com.squareup.retrofit2:retrofit:2.0.0' } karaf { features { // See section below for karaf 4 support if using 1.3.0 xsdVersion = '1.2.0' name = "${project.name}-${version}" outputFile = file("${project.buildDir}/karaf/features/${project.name}-${project.version}-feature.xml") version = '4.0.0' // Your project version description = 'Karaf features' // Include the current project, false by default includeProject = false // Add in extra repositories to the features xml file repository "mvn:org.apache.karaf.features/standard/4.0.0/xml/features" // Define a feature named 'my-feature1' with dependencies from runtime configuration (default if java plugin is enabled) and 'foo' feature { name = 'my-feature1' description = 'Includes runtime and foo dependencies' // Include one or more additional configuration configuration 'foo' } // Define a feature named 'my-feature2' with dependencies from 'bar' and 'baz' configurations feature { name = 'my-feature2' description = 'Includes runtime, bar and baz dependencies' // Override configurations configurations 'bar', 'baz' } feature { name = 'my-feature3' description = 'Feature with capabilities' // Override configurations configurations 'foo', 'bar' // Add feature dependency (newest) feature 'aries-proxy' // Customize artifacts with group 'com.fasterxml.jackson.core' bundle ('com.fasterxml.jackson.core') { attribute 'start-level', '20' } conditional('bundle') { bundle 'commons-io:commons-io' } capability('osgi.service') { effective = 'active' extra = 'objectClass=org.apache.aries.blueprint.services.ParserService' } capability('osgi.extender') { extra = 'osgi.extender="osgi.blueprint";uses:="org.osgi.service.blueprint.container,org.osgi.service.blueprint.reflect";version:Version="1.0"' } } // Define a feature named 'my-feature4' feature { name = 'my-feature4' description = 'Feature with config file' configurations 'foo' // Add configFile entry configFile { filename = "/etc/my-file.xml" uri = "mvn:com.my.company/my.artifact/${project.version}/xml/my-file" } // Add configFile entry and copy a local file to the kar repository configFile { filename = '${karaf.etc}/my.Config.cfg' file = file("resources/my.Config.cfg") uri = "mvn:com.my.company/my.artifact/${project.version}/cfg/features" override = true // (optional) Override existing configuration files within karaf. False by default } } } // Enable generation of an OSGi bundles repository, laid out as a Maven 2 repository based on // the features defined above. This can be used to provision the 'system' directory of a // custom Karaf distribution. // To generate repo use generateRepo, assemble or install repo { } // Enable generation of Karaf Archive KAR based on features defined above. // To generate kar either use generateKar, assemble or install kar { // Optionally set the kar name, default is: // // ${features.name}-${features.version}.kar // // Extension is automatically set to .kar archiveName = 'foo' } } ---- === Generated Result from "gradle generateFeatures" [source,xml] ---- mvn:org.apache.karaf.features/standard/4.0.0/xml/features mvn:com.google.guava/guava/19.0 mvn:commons-io/commons-io/2.4 mvn:com.fasterxml.jackson.core/jackson-core/2.7.0 mvn:com.fasterxml.jackson.core/jackson-annotations/2.7.0 mvn:com.fasterxml.jackson.core/jackson-databind/2.7.0 wrap:mvn:com.squareup.retrofit2/retrofit/2.0.0 aries-proxy mvn:com.fasterxml.jackson.core/jackson-core/2.7.0 mvn:com.fasterxml.jackson.core/jackson-annotations/2.7.0 mvn:com.fasterxml.jackson.core/jackson-databind/2.7.0 bundle mvn:commons-io/commons-io/2.4 osgi.service;effective:='active';resolution:='mandatory';objectClass=org.apache.aries.blueprint.services.ParserService osgi.extender;effective:='resolve';resolution:='mandatory';osgi.extender="osgi.blueprint";uses:="org.osgi.service.blueprint.container,org.osgi.service.blueprint.reflect";version:Version="1.0" mvn:com.my.company/my.artifact/0.0.1/xml/my-file mvn:com.my.company/my.artifact/0.0.1/cfg/features mvn:commons-io/commons-io/2.4 ---- === Karaf 4 Support Karaf 4 features xsd v1.3.0 partially supported [source,groovy] ---- dependent-feature ---- To generate this stuff 1. Set xsdVersion to 1.3.0 2. Use dependency with configuration closure [source,groovy] ---- karaf { features { xsdVersion = '1.3.0' name = "${project.name}-${version}" outputFile = file("${project.buildDir}/karaf/features/${project.name}-feature.xml") mainFeature { name = 'main-feature-name' feature('dependent-feature') { dependency = true //false by default version = "1.2.3" //empty by default } } } } ---- generated file `build/karaf/features/project1-feature.xml` will look like below [source,groovy] ---- dependent-feature ----