-
-
Notifications
You must be signed in to change notification settings - Fork 302
Changes in 3.2.0
BJ Hargrave edited this page Feb 13, 2017
·
31 revisions
For Bndtools 3.2.0 changes, see https://github.com/bndtools/bndtools/wiki/Changes-in-3.2.0.
We've added a new repository plugin for Maven repositories: aQute.bnd.repository.maven.provider.MavenBndRepository
. This repository plugin provides full support for Maven repositories. It can handle the following use cases:
- Local repository – Bnd can put built bundles directly in the local repository. This defaults to
~/.m2/repository
but can be specified by themaven.repo.local
system property. - Remote repository – Publish snapshots and releases to the repository. Snapshot are properly managed. The remote repository URL can also be a
file:
URL to publish to a file system. - Support for proxies and credentials.
There is a tutorial on the OSGi enRoute website and an example. These are the further links:
- Maven Bnd Repository – Overview of the plugin.
-
-connection-settings
– Explains how to set credentials and proxies. -
-maven-release
– Specifies how to set options on the release process. -
-buildrepo
– Shows how to built bundles can be placed directly into the local repository.
The MavenBndRepository
replaces the aQute.bnd.deployer.repository.aether.AetherRepository
repository plugin which is now deprecated. Please migrate to the MavenBndRepository
repository plugin.
- When generating the
Bundle-Version
manifest header, previous versions of this plugin always replaced the stringSNAPSHOT
in the version qualifier with the value of the Bnd${tstamp}
macro. The plugin now instead sets the Bnd instruction-snapshot: ${tstamp}
. If the qualifier equalsSNAPSHOT
or ends with-SNAPSHOT
, the valueSNAPSHOT
is replaced with the the value of the Bnd${tstamp}
macro. Using the-snapshot
instruction allows the user to override the plugin behavior in the project's bnd file. For example, to retain the stringSNAPSHOT
in the version qualifier, set-snapshot: SNAPSHOT
in the project's bnd file. - Performance improvements were made for incremental building with M2E. The plugin will avoid work and writing output if none of the input files to the bundle are changed.
- A
<bndfile>
configuration element is defined to allow the specification of an alternate path for the project's bnd file. This path can be absolute or relative to the project's base directory. - A
<bnd>
configuration element is defined to allow the Bnd instructions to be specified in the pom file. This will generally be done via a<![CDATA[]]>
section in the<bnd>
element. The<bnd>
element will not be used if the project has a bnd file. - If
Bundle-SymbolicName
is not set in the project's bnd file, its value will default to the project's artifactId. - If
Bundle-Name
is not set in the project's bnd file, its value will default to the project's name.
- When using Gradle 2.12 and later, the
compileClasspath
configuration is used in preference to thecompile
configuration.
-
ProjectBuilder
, used for Workspace model builds, is changed to use the source output folder, e.g.bin
folder, as the default contents of the bundle if the project does not specify any of the following instructions:Private-Package
,Export-Package
,Include-Resource
,-includeresource
, or-resourceonly
. If the project specifies any of these instructions, then they will fully control the contents of the bundle. This change will make the default behavior more like maven or gradle builds where the source built in the project is included in the resulting bundle without having to specify that it should be included. - Bnd now use common communications logic to support proxies. See
-connection-settings
for information on how to set credentials and proxies. - A
${fileuri;path}
macro is added to convert a file path into a file URI. - A
${glob;expr}
macro is added which converts a glob expression into a regular expression. - A new VERSIONED option is added for the
${packages}
macro. This returns the packages in the bundle which are versioned. - Bnd tracing is now directed to slf4j. This will be INFO level if
setTrace(true)
was called or DEBUG level otherwise.
- The bnd-maven-plugin changed how
SNAPSHOT
is replaced with${tstamp}
in theBundle-Version
header value. See above for details. - The bnd-maven-plugin changed the default value of the
Bundle-SymbolicName
header from the name of the project's base directory to the project's artifactId. - Bnd 4.0, planned for Spring 2017, will move to Java 8 as the base runtime.
- The Bnd DS, metatype and versioning annotations are deprecated and support for them will be removed in Bnd 4.0. Please make plans to migrate to the OSGi Release 6 specified annotations which now offer more features than the bnd annotations.
- The
MavenBndRepository
replaces theaQute.bnd.deployer.repository.aether.AetherRepository
repository plugin which is now deprecated. Please migrate to theMavenBndRepository
repository plugin.
- The Bnd Gradle plugin for non-workspace builds does not properly handle plain files in the configuration of the
Bundle
task type. This is fixed by #1490 for the next release. - The Bnd Gradle plugin for workspace builds does not work in Gradle 2.14 due to a change Gradle made to how extra properties are looked up. This is fixed by #1496 for the next release.
- A comment line in a
bnd
file ending in\
is incorrectly continued onto the next line.