Skip to content

Kura Addon Archetype

The Kura Addon Archetype is a Maven Archetype that allows to create a development environment with the following features:

  • Maven-based build
  • Template project for creating DEB/RPM packages
  • Tycho-surefire based integration test template
  • Uses a remote P2 repository for the target platform

The Kura Archetype JAR (kura-addon-archetype-<kura-version>.jar) is available in the released artifacts and can be installed in the local maven repository with the following command:

mvn install:install-file \
-Dfile=./kura-addon-archetype-<kura-version>.jar \
-DgroupId=org.eclipse.kura \
-DartifactId=kura-addon-archetype \
-Dversion="<kura-version>" \ 
-Dpackaging=jar \
-DgeneratePom=true

Valid <kura-version> values are 6.0.0-SNAPSHOT and 6.0.0. This archetype is available since Kura 6.0.0.

After that, it is possible to generate a project skeleton using the archetype with the following command:

mvn archetype:generate \
-DarchetypeArtifactId=kura-addon-archetype \
-DarchetypeGroupId=org.eclipse.kura \
-DarchetypeVersion="<kura-version>"

The command will start the generation of the archetype in interactive mode. Maven will ask for a few parameters on the command line:

  • groupId : the Maven group id of the generated pom files, usually org.eclipse.kura
  • artifactId: the Maven artifact id of the generated parent pom file and the name of the generated top level project folder, usually something like org.eclipse.kura.myartifact
  • package: the Java package to be used for the main bundle, usually something like org.eclipse.kura.myartifact

Other parameters like version and mainBundleVendor can be changed by answering n after the Confirm properties configuration prompt, which appears after editing the properties above.

A .gitignore file is automatically added with a default configuration. The OSGI-INF folder is omitted because it will be generated during tests at compile-time (this is necessary to make the PDE launcher work).

Project structure

At the end of the procedure, the archetype will generate a subfolder in the working directory containing the following subfolders:

  • bundles: the directory where developed bundles can be placed. After the first archetype execution, this directory contains a single project, named as artifactId.bundle

  • distrib: contains a project that builds an RPM and a DEB package that installs the JAR produced in bundles in Kura's plugins folder /opt/eclipse/kura/plugins. It is recommended to configure this project to customize the target package architecture and other parameters. The project code is commented with hints on the configurable options

  • target-definition: The .target file contained in the project is the way to specify the project dependencies as maven artifacts, Tycho will then wrap them as bundles and make them available in the target platform. Since only released artifacts are published on Maven central, it is recommeded to perform a local Kura build to have the SNAPSHOT versions available

  • tests: contains OSGi integration tests executed by the tycho-surefire-plugin

Compile and run

The minimum supported Java version for compiling is Java 17. Compile the project with:

mvn clean install

The build will produce the following system packages in distrib/target:

  • DEB installer (<artifactId>_<version>_<debian-architecture>.deb)
  • RPM installer (<artifactId>-<version>.<rpm.architecture>.rpm)

Installer properties like the architecture, organization name, package dependencies, and others can be configured in the distrib project.

Depending on the system, the packages can be installed with:

# debian
apt install <artifactId>_<version>_<debian-architecture>.deb

# fedora/redhat/centos/others
dnf install <artifactId>-<version>.<rpm.architecture>.rpm

On some systems that use RPM package manager only signed packages are allowed (see rpm-maven-plugin documentation on how to sign a package). During development, it is possible to bypass this control using:

rpm --define '_pkgverify_level digest' -i <artifactId>-<version>.<rpm.architecture>.rpm

After having installed the package, restart kura with:

systemctl restart kura

During startup Kura will scan the plugins folder to pick up the installed JARs and include them in the framework's runtime.

It is possible to remove the installed plugins with:

# debian
apt purge <artifactId> # or apt remove <artifactId>

# fedora/redhat/centos/others
dnf remove <artifactId>

IDE setup

Importing Projects in Eclipse IDE

In Eclipse IDE , create a new workspace (it is not necessary to have the workspace in the root of the project) and import the projects with File | Import | Maven | Existing Maven Projects.

Note that if the workspace resides in the root of the project the parent POM file cannot be selected.

Load target platform

Open the .target file in the target-definition project and click on Set as Active Target Platform. Note that this will download the bundles from the Kura P2 repository and it may take a while to complete.

Eclipse IDE should rebuild the workspace automatically and show no errors. If errors appear, see next section.

(Optional) IDE errors resolution

In some cases it might be necessary to manually configure the build path. For the bundles and test projects, select Properties and then Project Natures and add the natures as in picture below.

Then, from the Java Build Path configure the correct source folder as in picture below.

Finally, configure the external Classpath dependencies by selecting the plugin dependencies from the Add Library.

On old Eclipse IDE installations it might be necessary to uninstall the Tycho configurator 0.1.0 plugin from Help | Install new software... | What is already installed?.