All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.eclipsesource.tycho.karaf.bridge.kar_packager.Config Maven / Gradle / Ivy

Go to download

The kar-packager is a small Maven Plugin to create Apache Karaf Archives (.kar) from a given folder. Everything the folder needs to contain are the bundles to make up the archive.

The newest version!
package com.eclipsesource.tycho.karaf.bridge.kar_packager;


public class Config {
  
  /**
   * @parameter
   */
  private String name;
  
  /**
   * @parameter
   */
  private String key;
  
  /**
   * @parameter
   */
  private String value;

  
  public String getName() {
    return name;
  }
  
  public String getKey() {
    return key;
  }
  
  public String getValue() {
    return value;
  }
  
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy