IBM / cics-bundle-maven

The plugin to build and deploy CICS bundles in a Maven build.
https://ibm.github.io/cics-bundle-maven/plugin-info.html
Eclipse Public License 2.0
18 stars 25 forks source link

Adds VersionRange support #204

Closed KyeMaloy97 closed 1 year ago

KyeMaloy97 commented 1 year ago

Adds support for VersionRanges in the version field in the POM file. Relies on a change in cics-bundle-common to go in before hand.

An example of using the new feature would be defining a dependency on a java project you want to wrap-up using the following code in your pom:

    <dependencies>
        <dependency>
            <groupId>com.ibm.cics.test-bundle-osgi-versionrange</groupId>
            <artifactId>osgi</artifactId>
            <version>[1.0, 2.0)</version>
            <type>jar</type>
        </dependency>
    </dependencies>