Template for Release Notes Release Candidate RC - bndtools/bnd GitHub Wiki
This is just a copy paste template for release notes for a RC / Release Candidate. Mainly for the testing instructions. This is based on https://github.com/bndtools/bnd/wiki/Changes-in-7.2.1
This is a patch release for X.X.X
- Status: Release Candidate
- Release date: TBD
- TBD
- Eclipse P2 Update Site – https://bndtools.jfrog.io/bndtools/update-rc
- Libs: https://bndtools.jfrog.io/bndtools/libs-release/ (e.g. https://bndtools.jfrog.io/ui/native/libs-release/biz/aQute/bnd/ and search the 7.2.1-RC1 folder the lib you are interested in e.g. biz.aQute.bnd)
- Gradle - using Release Candidates: https://github.com/bndtools/bnd/tree/master/gradle-plugins#using-the-latest-milestonerelease-candidate-build-of-the-bnd-gradle-plugins
pluginManagement {
plugins {
id "biz.aQute.bnd.builder" version "7.2.1-RC1"
}
repositories {
maven {
url = uri("https://bndtools.jfrog.io/bndtools/libs-release")
}
}
}
- Maven - using Release Candidates: https://github.com/bndtools/bnd/tree/master/maven-plugins#using-the-latest-milestonerelease-candidate-build-of-the-bnd-maven-plugins
<pluginRepositories>
<pluginRepository>
<id>bnd-releases</id>
<url>https://bndtools.jfrog.io/bndtools/libs-release/</url>
<layout>default</layout>
<snapshots>
<enabled>false</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories>
....
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>biz.aQute.bnd</groupId>
<artifactId>bnd-maven-plugin</artifactId>
<version>7.2.1-RC1</version>
<extensions>true</extensions>
</plugin>
<plugins>
<pluginManagement>
</build>
TBD