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/axis-axis2-java-core.git
The following commit(s) were added to refs/heads/master by this push: new 3ee413b Remove non existing classpath entries from WSDL2JavaSuccessTestBase 3ee413b is described below commit 3ee413bde5113a4e249f930d4c1a8a584a850e89 Author: Andreas Veithen <andreas.veit...@gmail.com> AuthorDate: Sat Dec 26 11:35:11 2020 +0000 Remove non existing classpath entries from WSDL2JavaSuccessTestBase --- .../test/org/apache/axis2/xmlbeans/WSDL2JavaSuccessTestBase.java | 6 ------ 1 file changed, 6 deletions(-) diff --git a/modules/xmlbeans/test/org/apache/axis2/xmlbeans/WSDL2JavaSuccessTestBase.java b/modules/xmlbeans/test/org/apache/axis2/xmlbeans/WSDL2JavaSuccessTestBase.java index a9a30cd..1d85803 100644 --- a/modules/xmlbeans/test/org/apache/axis2/xmlbeans/WSDL2JavaSuccessTestBase.java +++ b/modules/xmlbeans/test/org/apache/axis2/xmlbeans/WSDL2JavaSuccessTestBase.java @@ -48,8 +48,6 @@ public abstract class WSDL2JavaSuccessTestBase extends TestCase { System.getProperty("basedir", ".") + "/test-resources/"; public static final String CLASSES_DIR = System.getProperty("basedir", ".") + "/target/classes/"; - private String[] moduleNames = { "xml", "common", "core" }; - private static final String MODULE_PATH_PREFIX = "../modules/"; private static final String COMPILE_TARGET_NAME = "compile"; protected String wsdlFileName; @@ -215,10 +213,6 @@ public abstract class WSDL2JavaSuccessTestBase extends TestCase { File outputLocationFile = new File(outputLocation); Path classPath = new Path(codeGenProject, outputLocation); classPath.addExisting(classPath.concatSystemClasspath(), false); - for (int i = 0; i < moduleNames.length; i++) { - classPath.add(new Path(codeGenProject, - MODULE_PATH_PREFIX + moduleNames[i] + CLASSES_DIR)); - } classPath.add(new Path(codeGenProject, cp));