Skip to content

Commit

Permalink
build: Start 7.2.0 stream
Browse files Browse the repository at this point in the history
---
 Signed-off-by: Peter Kriens <Peter.Kriens@aQute.biz>

Signed-off-by: Peter Kriens <Peter.Kriens@aQute.biz>
  • Loading branch information
pkriens committed Nov 12, 2024
1 parent 2dcddcf commit f7fedbc
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
6 changes: 6 additions & 0 deletions biz.aQute.bndlib.tests/test/test/AnalyzerTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,12 @@ public class AnalyzerTest {
static File cwd = new File(System.getProperty("user.dir"));


@Test
public void testAbout() {
System.out.println(About.versionDefaults);

}

/**
* Verify that the manifest overrides a version in a package info
*/
Expand Down
5 changes: 4 additions & 1 deletion biz.aQute.bndlib/src/aQute/bnd/osgi/About.java
Original file line number Diff line number Diff line change
Expand Up @@ -250,6 +250,7 @@ public class About {

public static final Map<Version, String[]> CHANGES = Maps.ofEntries(
// In decreasing order
Maps.entry(_7_1, CHANGES_7_1), //
Maps.entry(_7_0, CHANGES_7_0), //
Maps.entry(_6_4, CHANGES_6_4), //
Maps.entry(_6_3, CHANGES_6_3), //
Expand Down Expand Up @@ -313,7 +314,9 @@ public static String getBndVersion() {
private static final long serialVersionUID = 1L;
{
try {
super.load(Workspace.class.getResourceAsStream(CURRENT + ".bnd"));
String file = CURRENT + ".bnd";
System.out.println("******************" + file);
super.load(Workspace.class.getResourceAsStream(file));
} catch (IOException e) {
logger.error("could not load version defaults for version {}", CURRENT, e);
}
Expand Down
2 changes: 1 addition & 1 deletion gradle-plugins/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ org.gradle.jvmargs=-Xms1024m -Xmx2048m
systemProp.org.gradle.internal.publish.checksums.insecure=true

bnd_group: biz.aQute.bnd
bnd_version: 7.1.0-SNAPSHOT
bnd_version: 7.2.0-SNAPSHOT
bnd_distrepo: ../dist/bundles

0 comments on commit f7fedbc

Please sign in to comment.