We no longer need a special configuration to run SureFire with ByteBuddy
on Java 16 and up
diff --git a/pom.xml b/pom.xml
index 9b0942a..3c1332b 100644
--- a/pom.xml
+++ b/pom.xml
@@ -547,26 +547,6 @@
       </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>
         <skipTests>true</skipTests>