This is an automated email from the ASF dual-hosted git repository.
ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-bcel.git
The following commit(s) were added to refs/heads/master by this push:
new ca36afb9 spdx can require Java 17 depending on undocumented behavior
which kicks in for us here on macOS (but not on Java 8 somehow)
ca36afb9 is described below
commit ca36afb91fc945e4135dedab6776c448e6d80e5f
Author: Gary Gregory <[email protected]>
AuthorDate: Wed Jan 7 08:39:46 2026 -0500
spdx can require Java 17 depending on undocumented behavior which kicks
in for us here on macOS (but not on Java 8 somehow)
---
pom.xml | 10 ++++++++++
1 file changed, 10 insertions(+)
diff --git a/pom.xml b/pom.xml
index d0e91bbd..2c5ce766 100644
--- a/pom.xml
+++ b/pom.xml
@@ -500,6 +500,16 @@
</plugins>
</build>
</profile>
+ <profile>
+ <id>spdx-java-11</id>
+ <activation>
+ <jdk>11</jdk>
+ </activation>
+ <properties>
+ <!-- spdx can require Java 17 depending on undocumented behavior which
kicks in for us here on macOS (but not on Java 8 somehow). -->
+ <commons.spdx.version>0.5.5</commons.spdx.version>
+ </properties>
+ </profile>
<profile>
<!-- Java 9 and up -->
<id>java-9-up</id>