This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to branch dependabot/maven/org.apache.geronimo.specs-geronimo-jaxws_2.2_spec-1.2 in repository https://gitbox.apache.org/repos/asf/axis-axis2-java-core.git.
discard eaa7549 Bump geronimo-jaxws_2.2_spec from 1.0 to 1.2 add 1c47619 Remove maven-eclipse-plugin configurations add b3e4a91 Use consistent versions of SLF4J artifacts add bfbb03e Update Pax Exam add 329c39d Automatically configure Eclipse code formatter settings add 2315f88 Remove the testkit doclet add 1a93c1f Bump slf4j.version from 1.7.22 to 1.7.30 add 91ec147 Use Jetty 9 in axis2-testutils add 37e4fff Migrate to Github Actions add d20291e Update .gitignore add ff907bd Bump maven-source-plugin from 3.0.1 to 3.2.1 add 69360b9 Use Spring's MockHttpServletRequest in TransportHeadersTest add 223246c Update to a more recent servlet version add cefc9ab Bump checksum-maven-plugin from 1.5 to 1.9 add 5f6f3dd Bump maven-archiver from 3.0.2 to 3.5.0 add 8554286 Update Eclipse dependencies add 7dd258e Update alta-maven-plugin add 98ade07 Remove unnecessary dependencyManagement entry add 9485a7e Remove unnecessary version override add 58849b2 Bump FastInfoset from 1.2.7 to 2.0.0 add 318ee1f Bump maven.version from 3.3.9 to 3.6.3 add 3623260 Bump wsdl4j from 1.6.2 to 1.6.3 add 2b309ac Bump geronimo-jaxws_2.2_spec from 1.0 to 1.2 This update added new revisions after undoing existing revisions. That is to say, some revisions that were in the old version of the branch are not in the new version. This situation occurs when a user --force pushes a change and generates a repository containing something like this: * -- * -- B -- O -- O -- O (eaa7549) \ N -- N -- N refs/heads/dependabot/maven/org.apache.geronimo.specs-geronimo-jaxws_2.2_spec-1.2 (2b309ac) You should already have received notification emails for all of the O revisions, and so the following emails describe only the N revisions from the common base, B. Any revisions marked "omit" are not gone; other references still refer to them. Any revisions marked "discard" are gone forever. No new revisions were added by this update. Summary of changes: .github/dependabot.yml | 3 + .github/workflows/ci.yml | 48 ++++ .gitignore | 6 +- .travis-settings.xml | 13 - .travis.yml | 25 -- apidocs/pom.xml | 32 --- modules/distribution/pom.xml | 14 +- modules/integration/pom.xml | 5 + .../axis2/transport/http/TestServletRequest.java | 268 --------------------- .../axis2/transport/http/TransportHeadersTest.java | 28 +-- modules/jibx/pom.xml | 10 - modules/kernel/pom.xml | 2 +- modules/osgi-tests/pom.xml | 109 ++++----- modules/osgi/pom.xml | 3 +- modules/samples/book/pom.xml | 3 +- modules/samples/java_first_jaxws/pom.xml | 3 +- modules/samples/jaxws-samples/pom.xml | 3 +- modules/soapmonitor/servlet/pom.xml | 2 +- modules/testutils/pom.xml | 1 - .../org/apache/axis2/testutils/JettyServer.java | 11 +- .../axis2/testutils/jaxws/JAXWSEndpoint.java | 8 +- modules/tool/axis2-eclipse-codegen-plugin/pom.xml | 57 ++--- modules/tool/axis2-eclipse-service-plugin/pom.xml | 49 ++-- modules/tool/simple-server-maven-plugin/pom.xml | 2 - .../http/mock/MockHttpServletResponse.java | 36 +++ modules/transport/jms/pom.xml | 14 +- modules/transport/mail/pom.xml | 14 +- modules/transport/testkit/pom.xml | 20 -- .../axis2/transport/testkit/doclet/Dependency.java | 48 ---- .../axis2/transport/testkit/doclet/Resource.java | 50 ---- .../transport/testkit/doclet/ResourceInfo.java | 59 ----- .../testkit/doclet/ResourceInfoDoclet.java | 144 ----------- .../testkit/doclet/TestkitJavadocDoclet.java | 114 --------- modules/webapp/pom.xml | 2 +- pom.xml | 192 ++++++++++----- systests/webapp-tests/pom.xml | 29 ++- 36 files changed, 398 insertions(+), 1029 deletions(-) create mode 100644 .github/workflows/ci.yml delete mode 100644 .travis-settings.xml delete mode 100644 .travis.yml delete mode 100644 modules/integration/test/org/apache/axis2/transport/http/TestServletRequest.java delete mode 100644 modules/transport/testkit/src/main/java/org/apache/axis2/transport/testkit/doclet/Dependency.java delete mode 100644 modules/transport/testkit/src/main/java/org/apache/axis2/transport/testkit/doclet/Resource.java delete mode 100644 modules/transport/testkit/src/main/java/org/apache/axis2/transport/testkit/doclet/ResourceInfo.java delete mode 100644 modules/transport/testkit/src/main/java/org/apache/axis2/transport/testkit/doclet/ResourceInfoDoclet.java delete mode 100644 modules/transport/testkit/src/main/java/org/apache/axis2/transport/testkit/doclet/TestkitJavadocDoclet.java