You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ws.apache.org by ve...@apache.org on 2022/07/09 13:14:31 UTC

[ws-xmlschema] branch master updated: Remove the DefaultTest and IBMTest profiles

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

veithen pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ws-xmlschema.git


The following commit(s) were added to refs/heads/master by this push:
     new 3320e034 Remove the DefaultTest and IBMTest profiles
3320e034 is described below

commit 3320e034ff68684d23401d16b9dd48c2b5fc9d96
Author: Andreas Veithen <an...@gmail.com>
AuthorDate: Sat Jul 9 13:11:39 2022 +0000

    Remove the DefaultTest and IBMTest profiles
    
    DefaultTest doesn't do anything. IBMTest refers to some bug that existed
    in the IBM JDK 12 years ago, and is likely no longer relevant.
---
 pom.xml | 45 ---------------------------------------------
 1 file changed, 45 deletions(-)

diff --git a/pom.xml b/pom.xml
index 3e4e6de9..f5220297 100644
--- a/pom.xml
+++ b/pom.xml
@@ -407,51 +407,6 @@
                 </plugins>
             </build>
         </profile>
-        <profile>
-            <id>DefaultTest</id>
-            <activation>
-                <activeByDefault>true</activeByDefault>
-            </activation>
-        </profile>
-        <profile>
-            <id>IBMTest</id>
-            <activation>
-                <property>
-                    <name>java.vendor</name>
-                    <value>IBM Corporation</value>
-                </property>
-            </activation>
-            <dependencies>
-                <dependency>
-                    <groupId>org.apache.bcel</groupId>
-                    <artifactId>bcel</artifactId>
-                    <version>5.2</version>
-                </dependency>
-                <dependency>
-                    <groupId>xalan</groupId>
-                    <artifactId>xalan</artifactId>
-                    <version>2.7.1</version>
-                </dependency>
-            </dependencies>
-            <build>
-                <plugins>
-                    <plugin>
-                        <artifactId>maven-surefire-plugin</artifactId>
-                        <configuration>
-                            <systemPropertyVariables>
-                                <!--
-                                The default xalan TransformerFactory on the ibm jdk is
-                                org.apache.xalan.processor.TransformerFactoryImpl which has a
-                                known issue with implicit namespaces. Set this property to use
-                                the xsltc TransformerFactory (which the sun jdk seems to
-                                default to). -->
-                                <javax.xml.transform.TransformerFactory>org.apache.xalan.xsltc.trax.TransformerFactoryImpl</javax.xml.transform.TransformerFactory>
-                            </systemPropertyVariables>
-                        </configuration>
-                    </plugin>
-                </plugins>
-            </build>
-        </profile>
         <profile>
             <id>setup.eclipse</id>
             <properties>