I took care of the failure on verify. I added a clean to log4j-api so it will clean every time.
Ralph > On Apr 5, 2021, at 10:55 PM, Ralph Goers <ralph.go...@dslextreme.com> wrote: > > Matt, > > A couple of comments > This doesn’t seem right. Log4j-audit, Kotlin, and Chainsaw all use the mvn > command. This will modify them to use Java 11 instead of Java 8. Did we > really want to do that? > The Jenkins build is still failing. The first phase that compiles works but > the second phase that runs the unit test bails because it tries to recompile > everything without doing a clean first. That means it will find the > module-info class when it tries to compile Activator and that will fail > because org.osgi.core is not in the module-info. It can’t be since OSGi isn’t > JPMS compatible - which is another reason why the code had to be compiled > separately from the module-info.java file. I’m really curious - why do you > run mvn twice and just not skip tests the first time? > > Ralph > >> On Apr 5, 2021, at 2:18 PM, mattsic...@apache.org wrote: >> >> This is an automated email from the ASF dual-hosted git repository. >> >> mattsicker pushed a commit to branch master >> in repository https://gitbox.apache.org/repos/asf/logging-pipelines.git >> >> >> The following commit(s) were added to refs/heads/master by this push: >> new 10333f7 Use Java 11 for master branch >> 10333f7 is described below >> >> commit 10333f76c589fa45e80db878895ad19cfcaba11c >> Author: Matt Sicker <boa...@gmail.com> >> AuthorDate: Mon Apr 5 16:18:13 2021 -0500 >> >> Use Java 11 for master branch >> --- >> vars/mvn.groovy | 10 ++++++---- >> 1 file changed, 6 insertions(+), 4 deletions(-) >> >> diff --git a/vars/mvn.groovy b/vars/mvn.groovy >> index bf15449..647a15f 100644 >> --- a/vars/mvn.groovy >> +++ b/vars/mvn.groovy >> @@ -17,10 +17,11 @@ >> >> def call(String args) { >> if (isUnix()) { >> + String javaHome = "/home/jenkins/tools/java/latest${BRANCH_NAME == >> 'master' ? '11' : '1.8'}" >> configFileProvider([configFile(fileId: 'ubuntu', variable: >> 'TOOLCHAINS')]) { >> withEnv([ >> - 'JAVA_HOME=/home/jenkins/tools/java/latest1.8', >> - >> 'PATH+MAVEN=/home/jenkins/tools/maven/latest3/bin:/home/jenkins/tools/java/latest1.8/bin' >> + "JAVA_HOME=${javaHome}", >> + >> "PATH+MAVEN=/home/jenkins/tools/maven/latest3/bin:${javaHome}/bin" >> ]) { >> // note that the jenkins system property is set here to >> activate certain pom properties in >> // some log4j modules that compile against system jars (e.g., >> log4j-jmx-gui) >> @@ -28,10 +29,11 @@ def call(String args) { >> } >> } >> } else { >> + String javaHome = "f:\\jenkins\\tools\\java\\latest${BRANCH_NAME == >> 'master' ? '11' : '1.8'}" >> configFileProvider([configFile(fileId: 'windows', variable: >> 'TOOLCHAINS')]) { >> withEnv([ >> - 'JAVA_HOME=f:\\jenkins\\tools\\java\\latest1.8', >> - >> 'PATH+MAVEN=f:\\jenkins\\tools\\maven\\latest3\\bin;f:\\jenkins\\tools\\java\\latest1.8\\bin' >> + "JAVA_HOME=${javaHome}", >> + >> "PATH+MAVEN=f:\\jenkins\\tools\\maven\\latest3\\bin;${javaHome}\\bin" >> ]) { >> bat "mvn --toolchains \"%TOOLCHAINS%\" ${args}" >> } >> >