Skip to content

Commit e455376

Browse files
ppkarwaszvy
andcommitted
Fail build for static transitive modules
This adds a Groovy script that fails the build if any optional JPMS module has the `transitive` qualifier. We remove the `transitive` modifier from all optional dependencies. Closes #2929. Co-authored-by: Volkan Yazıcı <[email protected]>
1 parent fda45ec commit e455376

File tree

7 files changed

+84
-3
lines changed

7 files changed

+84
-3
lines changed

log4j-core/pom.xml

+1
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@
6666
java.xml;transitive=false,
6767
jdk.unsupported;transitive=false,
6868
org.fusesource.jansi;transitive=false,
69+
org.jspecify;transitive=false
6970
</bnd-extra-module-options>
7071

7172
<log4j.docgen.pluginDescriptorsDir>${log4j.docgen.pluginDescriptorsDir.phase1}</log4j.docgen.pluginDescriptorsDir>

log4j-jul/pom.xml

+4-2
Original file line numberDiff line numberDiff line change
@@ -29,15 +29,17 @@
2929
<description>The Apache Log4j implementation of java.util.logging</description>
3030

3131
<properties>
32-
<log4jParentDir>${basedir}/..</log4jParentDir>
33-
3432
<!--
3533
~ OSGi and JPMS options
3634
-->
3735
<bnd-extra-package-options>
3836
<!-- Log4j Core is optional -->
3937
org.apache.logging.log4j.core.*;resolution:=optional
4038
</bnd-extra-package-options>
39+
<bnd-extra-module-options>
40+
<!-- Optional dependencies can not be transitive -->
41+
org.apache.logging.log4j.core;transitive=false
42+
</bnd-extra-module-options>
4143

4244
<!-- PTS requires using the JUnit Platform, which interferes with JUL initialization -->
4345
<predictive.test.selection.enabled>false</predictive.test.selection.enabled>

log4j-kit/pom.xml

+4-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,10 @@
3535
<!-- JSpecify is optional at runtime -->
3636
org.jspecify.annotations.*;resolution:=optional
3737
</bnd-extra-package-options>
38-
<bnd-extra-module-options>org.jspecify;transitive:=false</bnd-extra-module-options>
38+
<bnd-extra-module-options>
39+
<!-- Optional dependencies should not be `static` -->
40+
org.jspecify;transitive=false
41+
</bnd-extra-module-options>
3942
</properties>
4043

4144
<dependencies>

log4j-parent/pom.xml

+63
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,7 @@
8787
<asciidoctor-maven-plugin.version>2.2.4</asciidoctor-maven-plugin.version>
8888
<docker-maven-plugin.version>0.43.4</docker-maven-plugin.version>
8989
<exam-maven-plugin.version>4.13.5</exam-maven-plugin.version>
90+
<gmavenplus-plugin.version>3.0.2</gmavenplus-plugin.version>
9091
<!-- `surefire.version` property used in `apache.org:apache`: -->
9192
<surefire.version>3.5.0</surefire.version>
9293

@@ -838,6 +839,68 @@
838839
</executions>
839840
</plugin>
840841

842+
<plugin>
843+
<groupId>org.codehaus.gmavenplus</groupId>
844+
<artifactId>gmavenplus-plugin</artifactId>
845+
<version>${gmavenplus-plugin.version}</version>
846+
<dependencies>
847+
<dependency>
848+
<groupId>org.apache.groovy</groupId>
849+
<artifactId>groovy-ant</artifactId>
850+
<version>${groovy.version}</version>
851+
<scope>runtime</scope>
852+
</dependency>
853+
<dependency>
854+
<groupId>org.apache.groovy</groupId>
855+
<artifactId>groovy</artifactId>
856+
<version>${groovy.version}</version>
857+
<scope>runtime</scope>
858+
</dependency>
859+
</dependencies>
860+
<executions>
861+
<execution>
862+
<id>ban-static-transitive</id>
863+
<goals>
864+
<goal>execute</goal>
865+
</goals>
866+
<phase>verify</phase>
867+
<configuration>
868+
<continueExecuting>false</continueExecuting>
869+
<scripts>
870+
<script><![CDATA[
871+
import java.io.StringWriter
872+
import java.util.spi.ToolProvider
873+
874+
if ("jar" != project.packaging) {
875+
log.info("Skipping module descriptor check, since the project type is not `jar`.")
876+
return
877+
}
878+
String jarFile = project.build.directory + "/" + project.build.finalName + ".jar";
879+
if (!new File(jarFile).exists()) {
880+
log.info("Skipping module descriptor check, since `" + jarFile + "` is missing.")
881+
return
882+
}
883+
StringWriter out = new StringWriter()
884+
StringWriter err = new StringWriter()
885+
ToolProvider jar = ToolProvider.findFirst("jar").orElseThrow()
886+
int result = jar.run(new PrintWriter(out), new PrintWriter(err), "-d", "-f", jarFile)
887+
if (result != 0) {
888+
throw new RuntimeException("Failed to decompile the module descriptor in `" + jarFile + "`:\n" + err)
889+
}
890+
log.debug("Module descriptor: " + out)
891+
for (String line : out.toString().split("\r?\n", -1)) {
892+
if (line.contains("static") && line.contains("transitive")) {
893+
throw new RuntimeException("The `static` and `transitive` modifiers should not be use together: " + line)
894+
}
895+
}
896+
log.info("Successfully verified module descriptor in `" + jarFile + "`.")
897+
]]></script>
898+
</scripts>
899+
</configuration>
900+
</execution>
901+
</executions>
902+
</plugin>
903+
841904
</plugins>
842905
</build>
843906

log4j-plugins/pom.xml

+4
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,10 @@
3737
com.google.errorprone.annotations.concurrent;resolution:=optional,
3838
org.jspecify.annotations.*;resolution:=optional
3939
</bnd-extra-package-options>
40+
<bnd-extra-module-options>
41+
<!-- Optional dependencies should not be `static` -->
42+
org.jspecify;transitive=false
43+
</bnd-extra-module-options>
4044
</properties>
4145

4246
<dependencies>

log4j-to-jul/pom.xml

+4
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,10 @@
3434
<!-- Annotations only -->
3535
org.jspecify.*;resolution:=optional
3636
</bnd-extra-package-options>
37+
<bnd-extra-module-options>
38+
<!-- Remove `transitive` for optional dependencies -->
39+
org.jspecify;transitive=false
40+
</bnd-extra-module-options>
3741
</properties>
3842

3943
<dependencies>

log4j-to-slf4j/pom.xml

+4
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,10 @@
4545
<!-- This bridge also support SLF4J 2.x -->
4646
org.slf4j.*;version="${slf4j.support.range}"
4747
</bnd-extra-package-options>
48+
<bnd-extra-module-options>
49+
<!-- Remove `transitive` for optional dependencies -->
50+
org.jspecify;transitive=false
51+
</bnd-extra-module-options>
4852
</properties>
4953
<dependencies>
5054
<dependency>

0 commit comments

Comments
 (0)