Skip to content

Releases: ctron/osgi-dp

0.4.0

06 Mar 16:02
osgi-dp-0.4.0
Compare
Choose a tag to compare

New features

  • Add new bundle goal which allows to package a DP alongside a bundle (e.g. using the maven-bundle-plugin) including dependencies

  • Added proper validations for the integration tests

  • Register unpacker for dp extension
    This allows e.g. the maven-dependency-plugin to unpack dp artifacts. You need to add the plugin to the dependency of the plugin:

    <plugin>
      <groupId>org.apache.maven.plugins</groupId>
      <artifactId>maven-dependency-plugin</artifactId>
      <version>3.0.2</version>
      <dependencies>
        <dependency>
          <groupId>de.dentrassi.maven</groupId>
          <artifactId>osgi-dp</artifactId>
          <version>${osgi-dp.plugin.version}</version>
        </dependency>
      </dependencies>
      …
    </plugin>

Changes

  • Change Maven version to 3.3.9
  • Change Tycho version to 1.1.0

Maven coordinates

<plugin>
  <groupId>de.dentrassi.maven</groupId>
  <artifactId>osgi-dp</artifactId>
  <version>0.4.0</version>
</plugin>