[axis-axis2-java-core] branch master updated: Add Gitpod configuration
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 ea85fd9799 Add Gitpod configuration ea85fd9799 is described below commit ea85fd97990af379bde3d06581a4e713188f93b9 Author: Andreas Veithen AuthorDate: Sun Jul 10 10:16:24 2022 + Add Gitpod configuration --- .gitpod.yml | 22 ++ .vscode/settings.json | 3 +++ 2 files changed, 25 insertions(+) diff --git a/.gitpod.yml b/.gitpod.yml new file mode 100644 index 00..d4288ab94a --- /dev/null +++ b/.gitpod.yml @@ -0,0 +1,22 @@ +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor license agreements. See the NOTICE file distributed with +# this work for additional information regarding copyright ownership. +# The ASF licenses this file to You under the Apache License, Version 2.0 +# (the "License"); you may not use this file except in compliance with +# the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +image: gitpod/workspace-java-17 + +tasks: + - init: mvn install -DskipTests + +vscode: + extensions: +- vscjava.vscode-java-pack diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 00..2128ea4157 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ +"java.jdt.ls.vmargs": "-XX:+UseParallelGC -XX:GCTimeRatio=4 -XX:AdaptiveSizePolicyWeight=90 -Dsun.zip.disableMemoryMapping=true -Xmx2G -Xms100m" +} \ No newline at end of file
[axis-axis2-java-core] branch master updated: Remove unused test resource
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 eb90ef2e5d Remove unused test resource eb90ef2e5d is described below commit eb90ef2e5d274bc903b0faa1a00cc3ebe3dfba3d Author: Andreas Veithen AuthorDate: Sun Jul 10 11:43:46 2022 +0100 Remove unused test resource --- .../test/org/apache/axis2/transport/sample.xml | 34 -- 1 file changed, 34 deletions(-) diff --git a/modules/kernel/test/org/apache/axis2/transport/sample.xml b/modules/kernel/test/org/apache/axis2/transport/sample.xml deleted file mode 100644 index 226fe78a8d..00 --- a/modules/kernel/test/org/apache/axis2/transport/sample.xml +++ /dev/null @@ -1,34 +0,0 @@ - - -http://schemas.xmlsoap.org/soap/envelope/"; xmlns:xsd="http://www.w3.org/2001/XMLSchema"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/08/addressing";> - -uuid:920C5190-0B8F-11D9-8CED-F22EDEEBF7E5 -http://localhost:8081/axis/services/BankPort - - http://schemas.xmlsoap.org/ws/2004/03/addressing/role/anonymous - -http://ws.apache.org/tests/action - - -http://schemas.xmlsoap.org/soap/encoding/"; xmlns:ns1="http://localhost:8081/axis/services/BankPort";> -234 - - - \ No newline at end of file
[axis-axis2-java-core] branch master updated: Move classes to locations that match their declared packages
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 83bdbd132d Move classes to locations that match their declared packages 83bdbd132d is described below commit 83bdbd132dd5613c2c5613233866916cc284cc67 Author: Andreas Veithen AuthorDate: Sun Jul 10 11:46:36 2022 +0100 Move classes to locations that match their declared packages --- .../axis2/{transport => kernel}/http/MultipartFormDataFormatterTest.java | 0 .../apache/axis2/{transport => kernel}/http/SOAPMessageFormatterTest.java | 0 .../axis2/{transport => kernel}/http/XFormURLEncodedFormatterTest.java| 0 .../axis2/{transport => kernel}/http/util/QueryStringParserTest.java | 0 .../axis2/{transport => kernel}/http/util/URLTemplatingUtilTest.java | 0 5 files changed, 0 insertions(+), 0 deletions(-) diff --git a/modules/kernel/test/org/apache/axis2/transport/http/MultipartFormDataFormatterTest.java b/modules/kernel/test/org/apache/axis2/kernel/http/MultipartFormDataFormatterTest.java similarity index 100% rename from modules/kernel/test/org/apache/axis2/transport/http/MultipartFormDataFormatterTest.java rename to modules/kernel/test/org/apache/axis2/kernel/http/MultipartFormDataFormatterTest.java diff --git a/modules/kernel/test/org/apache/axis2/transport/http/SOAPMessageFormatterTest.java b/modules/kernel/test/org/apache/axis2/kernel/http/SOAPMessageFormatterTest.java similarity index 100% rename from modules/kernel/test/org/apache/axis2/transport/http/SOAPMessageFormatterTest.java rename to modules/kernel/test/org/apache/axis2/kernel/http/SOAPMessageFormatterTest.java diff --git a/modules/kernel/test/org/apache/axis2/transport/http/XFormURLEncodedFormatterTest.java b/modules/kernel/test/org/apache/axis2/kernel/http/XFormURLEncodedFormatterTest.java similarity index 100% rename from modules/kernel/test/org/apache/axis2/transport/http/XFormURLEncodedFormatterTest.java rename to modules/kernel/test/org/apache/axis2/kernel/http/XFormURLEncodedFormatterTest.java diff --git a/modules/kernel/test/org/apache/axis2/transport/http/util/QueryStringParserTest.java b/modules/kernel/test/org/apache/axis2/kernel/http/util/QueryStringParserTest.java similarity index 100% rename from modules/kernel/test/org/apache/axis2/transport/http/util/QueryStringParserTest.java rename to modules/kernel/test/org/apache/axis2/kernel/http/util/QueryStringParserTest.java diff --git a/modules/kernel/test/org/apache/axis2/transport/http/util/URLTemplatingUtilTest.java b/modules/kernel/test/org/apache/axis2/kernel/http/util/URLTemplatingUtilTest.java similarity index 100% rename from modules/kernel/test/org/apache/axis2/transport/http/util/URLTemplatingUtilTest.java rename to modules/kernel/test/org/apache/axis2/kernel/http/util/URLTemplatingUtilTest.java
[axis-axis2-java-core] branch master updated: Avoid bad interaction between maven-release-plugin and tidy-maven-plugin
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 83d7d47367 Avoid bad interaction between maven-release-plugin and tidy-maven-plugin 83d7d47367 is described below commit 83d7d473678995ec14b12e80936ca185a1f2a149 Author: Andreas Veithen AuthorDate: Sun Jul 10 13:05:16 2022 + Avoid bad interaction between maven-release-plugin and tidy-maven-plugin --- apidocs/pom.xml| 7 ++ databinding-tests/jaxbri-tests/pom.xml | 7 ++ databinding-tests/pom.xml | 7 ++ modules/samples/java_first_jaxws/pom.xml | 7 ++ modules/samples/jaxws-addressbook/pom.xml | 7 ++ modules/samples/jaxws-calculator/pom.xml | 7 ++ modules/samples/jaxws-interop/pom.xml | 7 ++ modules/samples/jaxws-samples/pom.xml | 7 ++ modules/samples/jaxws-version/pom.xml | 7 ++ modules/samples/pom.xml| 7 ++ .../transport/https-sample/httpsClient/pom.xml | 7 ++ .../transport/https-sample/httpsService/pom.xml| 7 ++ modules/samples/transport/https-sample/pom.xml | 7 ++ .../transport/jms-sample/jmsService/pom.xml| 7 ++ modules/samples/transport/jms-sample/pom.xml | 7 ++ modules/tool/archetype/quickstart-webapp/pom.xml | 7 ++ modules/tool/archetype/quickstart/pom.xml | 7 ++ pom.xml| 25 ++ systests/SOAP12TestModuleB/pom.xml | 7 ++ systests/SOAP12TestModuleC/pom.xml | 7 ++ systests/SOAP12TestServiceB/pom.xml| 7 ++ systests/SOAP12TestServiceC/pom.xml| 7 ++ systests/echo/pom.xml | 7 ++ systests/pom.xml | 7 ++ systests/webapp-tests/pom.xml | 7 ++ 25 files changed, 193 insertions(+) diff --git a/apidocs/pom.xml b/apidocs/pom.xml index 7018b02fa2..9634414b01 100644 --- a/apidocs/pom.xml +++ b/apidocs/pom.xml @@ -31,6 +31,13 @@ Javadoc + + scm:git:https://gitbox.apache.org/repos/asf/axis-axis2-java-core.git + scm:git:https://gitbox.apache.org/repos/asf/axis-axis2-java-core.git + https://gitbox.apache.org/repos/asf?p=axis-axis2-java-core.git;a=summary +HEAD + + ${project.groupId} diff --git a/databinding-tests/jaxbri-tests/pom.xml b/databinding-tests/jaxbri-tests/pom.xml index 24c52b2c41..5f4d525eb3 100644 --- a/databinding-tests/jaxbri-tests/pom.xml +++ b/databinding-tests/jaxbri-tests/pom.xml @@ -30,6 +30,13 @@ http://axis.apache.org/axis2/java/core/ + + scm:git:https://gitbox.apache.org/repos/asf/axis-axis2-java-core.git + scm:git:https://gitbox.apache.org/repos/asf/axis-axis2-java-core.git + https://gitbox.apache.org/repos/asf?p=axis-axis2-java-core.git;a=summary +HEAD + + org.apache.ws.commons.axiom diff --git a/databinding-tests/pom.xml b/databinding-tests/pom.xml index b4dc4a9eb2..c275ff02da 100644 --- a/databinding-tests/pom.xml +++ b/databinding-tests/pom.xml @@ -35,6 +35,13 @@ jaxbri-tests + + scm:git:https://gitbox.apache.org/repos/asf/axis-axis2-java-core.git + scm:git:https://gitbox.apache.org/repos/asf/axis-axis2-java-core.git + https://gitbox.apache.org/repos/asf?p=axis-axis2-java-core.git;a=summary +HEAD + + diff --git a/modules/samples/java_first_jaxws/pom.xml b/modules/samples/java_first_jaxws/pom.xml index c3cc437597..bc3f4bb57e 100644 --- a/modules/samples/java_first_jaxws/pom.xml +++ b/modules/samples/java_first_jaxws/pom.xml @@ -33,6 +33,13 @@ JAXWS - Starting from Java Example 2004 + + scm:git:https://gitbox.apache.org/repos/asf/axis-axis2-java-core.git + scm:git:https://gitbox.apache.org/repos/asf/axis-axis2-java-core.git + https://gitbox.apache.org/repos/asf?p=axis-axis2-java-core.git;a=summary +HEAD + + javax.servlet diff --git a/modules/samples/jaxws-addressbook/pom.xml b/modules/samples/jaxws-addressbook/pom.xml index 52d3211a1f..2a94031672 100644 --- a/modules/samples/jaxws-addressbook/pom.xml +++ b/modules/samples/jaxws-addressbook/pom.xml @@ -32,6 +32,13 @@ JAXWS Addressbook Service + + scm:git:https://gitbox.apache.org/repos/asf/axis-axis2-java-core.git + scm:git:https://gitbox.apache.org/repos/asf/axis-axis2-java-core.git + https://gitbox.apache.org/repos/asf?p=axis-axis2-java-core.git;a=summary +HEA