You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by ma...@apache.org on 2023/01/20 10:06:39 UTC

[tomcat-taglibs-parent] branch main updated (5c359d0 -> 49e45f6)

This is an automated email from the ASF dual-hosted git repository.

markt pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/tomcat-taglibs-parent.git


    from 5c359d0  simplify Jenkinsfile
     new 437106e  Need to be able to pass --add-opens=... when on Java 9+
     new 49e45f6  Need newer version of BND to avoid ConcurrentModificationException on Java 15+

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 pom.xml | 11 +++++++++++
 1 file changed, 11 insertions(+)


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org


[tomcat-taglibs-parent] 01/02: Need to be able to pass --add-opens=... when on Java 9+

Posted by ma...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

markt pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tomcat-taglibs-parent.git

commit 437106e1bd7fc3865ce1b2ea894c8f0501045034
Author: Mark Thomas <ma...@apache.org>
AuthorDate: Fri Jan 20 10:05:25 2023 +0000

    Need to be able to pass --add-opens=... when on Java 9+
---
 pom.xml | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/pom.xml b/pom.xml
index 3e0d74c..62975d1 100644
--- a/pom.xml
+++ b/pom.xml
@@ -40,6 +40,7 @@
     <maven.compiler.target>8</maven.compiler.target>
     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
     <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
+    <surefire.argLine></surefire.argLine>
   </properties>
 
   <issueManagement>
@@ -116,6 +117,9 @@
           <groupId>org.apache.maven.plugins</groupId>
           <artifactId>maven-surefire-plugin</artifactId>
           <version>3.0.0-M4</version>
+          <configuration>
+            <argLine>${surefire.argLine}</argLine>
+          </configuration>
         </plugin>
         <plugin>
           <groupId>org.apache.maven.plugins</groupId>


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org


[tomcat-taglibs-parent] 02/02: Need newer version of BND to avoid ConcurrentModificationException on Java 15+

Posted by ma...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

markt pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tomcat-taglibs-parent.git

commit 49e45f67efd71fc8e1659d006080b454c1bac0b6
Author: Mark Thomas <ma...@apache.org>
AuthorDate: Fri Jan 20 10:06:29 2023 +0000

    Need newer version of BND to avoid ConcurrentModificationException on Java 15+
---
 pom.xml | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/pom.xml b/pom.xml
index 62975d1..704d937 100644
--- a/pom.xml
+++ b/pom.xml
@@ -142,6 +142,13 @@
             <Bundle-DocURL>${project.url}</Bundle-DocURL>
           </instructions>
         </configuration>
+        <dependencies>
+          <dependency>
+            <groupId>biz.aQute.bnd</groupId>
+            <artifactId>biz.aQute.bndlib</artifactId>
+            <version>6.4.0</version>
+          </dependency>
+        </dependencies>
       </plugin>
     </plugins>
   </build>


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org