You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2022/09/23 17:40:30 UTC

[commons-text] branch master updated: We no longer need a special configuration to run SureFire with ByteBuddy on Java 16 and up

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-text.git


The following commit(s) were added to refs/heads/master by this push:
     new 3bc3954c We no longer need a special configuration to run SureFire with ByteBuddy on Java 16 and up
3bc3954c is described below

commit 3bc3954c338911a37c053801e0cff89d68f14a18
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Fri Sep 23 13:40:27 2022 -0400

    We no longer need a special configuration to run SureFire with ByteBuddy
    on Java 16 and up
---
 pom.xml | 20 --------------------
 1 file changed, 20 deletions(-)

diff --git a/pom.xml b/pom.xml
index 9b0942ac..3c1332bc 100644
--- a/pom.xml
+++ b/pom.xml
@@ -546,26 +546,6 @@
         <coveralls.skip>true</coveralls.skip>
       </properties>
     </profile>
-    <profile>
-      <id>java16-ea</id>
-      <!-- bytebuddy Java 16 support is experimental (Mockito uses bytebuddy) -->
-      <activation>
-        <jdk>16-ea</jdk>
-      </activation>
-      <build>
-        <plugins>
-          <plugin>
-            <groupId>org.apache.maven.plugins</groupId>
-            <artifactId>maven-surefire-plugin</artifactId>
-            <configuration>
-              <systemPropertyVariables>
-                <net.bytebuddy.experimental>true</net.bytebuddy.experimental>
-              </systemPropertyVariables>
-            </configuration>
-          </plugin>
-        </plugins>
-      </build>
-    </profile>
     <profile>
       <id>benchmark</id>
       <properties>