Author: veithen
Date: Sat Apr 16 19:11:20 2016
New Revision: 1739493

URL: http://svn.apache.org/viewvc?rev=1739493&view=rev
Log:
Make it easier to run JAX-WS integration tests in an IDE.

Modified:
    axis/axis2/java/core/trunk/modules/jaxws-integration/pom.xml
    
axis/axis2/java/core/trunk/modules/jaxws-integration/test/org/apache/axis2/jaxws/utility/SimpleServer.java

Modified: axis/axis2/java/core/trunk/modules/jaxws-integration/pom.xml
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/core/trunk/modules/jaxws-integration/pom.xml?rev=1739493&r1=1739492&r2=1739493&view=diff
==============================================================================
--- axis/axis2/java/core/trunk/modules/jaxws-integration/pom.xml (original)
+++ axis/axis2/java/core/trunk/modules/jaxws-integration/pom.xml Sat Apr 16 
19:11:20 2016
@@ -1498,10 +1498,6 @@
                             <value>0</value>
                         </property>
                         <property>
-                            <name>build.repository</name>
-                            <value>${project.build.directory}/repo</value>
-                        </property>
-                        <property>
                             <name>javax.xml.soap.MessageFactory</name>
                             
<value>org.apache.axis2.saaj.MessageFactoryImpl</value>
                         </property>

Modified: 
axis/axis2/java/core/trunk/modules/jaxws-integration/test/org/apache/axis2/jaxws/utility/SimpleServer.java
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/core/trunk/modules/jaxws-integration/test/org/apache/axis2/jaxws/utility/SimpleServer.java?rev=1739493&r1=1739492&r2=1739493&view=diff
==============================================================================
--- 
axis/axis2/java/core/trunk/modules/jaxws-integration/test/org/apache/axis2/jaxws/utility/SimpleServer.java
 (original)
+++ 
axis/axis2/java/core/trunk/modules/jaxws-integration/test/org/apache/axis2/jaxws/utility/SimpleServer.java
 Sat Apr 16 19:11:20 2016
@@ -31,8 +31,8 @@ import org.apache.log4j.BasicConfigurato
 public class SimpleServer {
 
     private static SimpleHTTPServer server;
-    private String repositoryDir = System.getProperty("build.repository","");
-    private String axis2xml = System.getProperty("axis2.config");
+    private String repositoryDir = "target/repo";
+    private String axis2xml = null;
     private int port = 6060;
 
     public SimpleServer() {}


Reply via email to