Skip to content
This repository has been archived by the owner on Mar 25, 2024. It is now read-only.

Latest commit

 

History

History
40 lines (32 loc) · 1.36 KB

README.md

File metadata and controls

40 lines (32 loc) · 1.36 KB

baselining-maven-plugin

NOTE: The maven-bundle-plugin of the Apache Felix project supports baselining as of version 2.5.0. Therfore development on this plugin was discontinued.

Maven plugin leveraging bnd's baselining feature. The plugin automatically checks an OSGi bundle's package export versions need to be incremented, in accordance with semantic versioning principles.

Configuration

<plugin>
    <groupId>net.distilledcode.maven</groupId>
    <artifactId>baselining-maven-plugin</artifactId>
    <version>1.1.0</version>
    <executions>
        <execution>
            <id>baseline</id>
            <goals>
                <goal>baseline</goal>
            </goals>
        </execution>
    </executions>
    <configuration>
        <!-- default:lowerAndUpperBound, options:lowerAndUpperBound,lowerBound,none -->
        <enforcement>none</enforcement>

        <!-- default:false -->
        <skip>false</skip>
        
        <!-- default:false -->
        <enforceBundleVersion>false</enforceBundleVersion>
    </configuration>
</plugin>