[axis-axis2-java-core] branch dependabot/maven/tomcat.version-10.1.2 created (now d2dc2b22db)
This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to branch dependabot/maven/tomcat.version-10.1.2 in repository https://gitbox.apache.org/repos/asf/axis-axis2-java-core.git at d2dc2b22db Bump tomcat.version from 10.1.1 to 10.1.2 No new revisions were added by this update.
[axis-axis2-java-core] branch dependabot/maven/org.mockito-mockito-core-4.9.0 created (now dbf903ac98)
This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to branch dependabot/maven/org.mockito-mockito-core-4.9.0 in repository https://gitbox.apache.org/repos/asf/axis-axis2-java-core.git at dbf903ac98 Bump mockito-core from 4.8.1 to 4.9.0 No new revisions were added by this update.
[axis-axis2-java-core] branch master updated: fix 'Source Code' link in main site that should point to GitHub
This is an automated email from the ASF dual-hosted git repository. robertlazarski 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 06adac5c3a fix 'Source Code' link in main site that should point to GitHub 06adac5c3a is described below commit 06adac5c3a6c05aaaf9b83058a7f1c044ed88954 Author: Robert Lazarski AuthorDate: Tue Nov 15 13:55:19 2022 -0500 fix 'Source Code' link in main site that should point to GitHub --- src/site/site.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/site/site.xml b/src/site/site.xml index e1295e7290..ad5aee7e1f 100644 --- a/src/site/site.xml +++ b/src/site/site.xml @@ -92,7 +92,7 @@ http://svn.apache.org/viewvc/axis/axis2/java/core/trunk/"; /> + href="https://github.com/apache/axis-axis2-java-core"; />
[axis-axis2-java-core] branch master updated: Update Ubuntu version
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 874a2aeb88 Update Ubuntu version 874a2aeb88 is described below commit 874a2aeb887428e98d5d1c6fc991e72e3d8b812e Author: Andreas Veithen AuthorDate: Tue Nov 15 20:26:08 2022 + Update Ubuntu version --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4c3048fd9d..23d4076a59 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,7 +29,7 @@ jobs: matrix: java: [ 11, 17, 19 ] name: "Java ${{ matrix.java }}" -runs-on: ubuntu-18.04 +runs-on: ubuntu-22.04 steps: - name: Checkout uses: actions/checkout@v2 @@ -53,7 +53,7 @@ jobs: deploy: if: github.event_name == 'push' && github.ref == 'refs/heads/master' && github.repository == 'apache/axis-axis2-java-core' name: Deploy -runs-on: ubuntu-18.04 +runs-on: ubuntu-22.04 needs: build steps: - name: Checkout
[axis-axis2-java-core] branch master updated: Adapt to changes in the Axiom API
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 2a0874fa4b Adapt to changes in the Axiom API 2a0874fa4b is described below commit 2a0874fa4bc964f33f62e210278aa034a6c84968 Author: Andreas Veithen AuthorDate: Tue Nov 15 20:25:07 2022 + Adapt to changes in the Axiom API --- .../src/test/java/org/apache/axis2/schema/AbstractTestCase.java| 4 ++-- .../org/apache/axis2/jaxws/attachments/MTOMSerializationTests.java | 3 +++ .../org/apache/axis2/jaxws/message/MessagePersistanceTests.java| 2 +- modules/kernel/pom.xml | 4 modules/kernel/src/org/apache/axis2/builder/MTOMBuilder.java | 2 +- .../apache/axis2/context/externalize/MessageExternalizeUtils.java | 4 ++-- .../src/org/apache/axis2/kernel/http/SOAPMessageFormatter.java | 7 +++ modules/osgi-tests/src/test/java/OSGiTest.java | 2 ++ modules/saaj/src/org/apache/axis2/saaj/SOAPPartImpl.java | 2 +- pom.xml| 5 + 10 files changed, 28 insertions(+), 7 deletions(-) diff --git a/modules/adb-tests/src/test/java/org/apache/axis2/schema/AbstractTestCase.java b/modules/adb-tests/src/test/java/org/apache/axis2/schema/AbstractTestCase.java index 5a7b17a9f5..7f2b34b3be 100644 --- a/modules/adb-tests/src/test/java/org/apache/axis2/schema/AbstractTestCase.java +++ b/modules/adb-tests/src/test/java/org/apache/axis2/schema/AbstractTestCase.java @@ -363,7 +363,7 @@ public abstract class AbstractTestCase extends TestCase { String contentType = format.getContentTypeForMTOM("text/xml"); Attachments attachments = new Attachments(new ByteArrayInputStream(buffer.toByteArray()), contentType); assertEquals(countDataHandlers(bean) + 1, attachments.getAllContentIDs().length); -SOAPModelBuilder builder = OMXMLBuilderFactory.createSOAPModelBuilder(attachments); +SOAPModelBuilder builder = OMXMLBuilderFactory.createSOAPModelBuilder(attachments.getMultipartBody()); OMElement bodyElement = builder.getSOAPEnvelope().getBody().getFirstElement(); assertBeanEquals(expectedResult, ADBBeanUtil.parse(bean.getClass(), cache ? bodyElement.getXMLStreamReader() : bodyElement.getXMLStreamReaderWithoutCaching())); } @@ -383,7 +383,7 @@ public abstract class AbstractTestCase extends TestCase { //System.out.write(buffer.toByteArray()); String contentType = format.getContentTypeForMTOM("text/xml"); Attachments attachments = new Attachments(new ByteArrayInputStream(buffer.toByteArray()), contentType); -SOAPModelBuilder builder = OMXMLBuilderFactory.createSOAPModelBuilder(attachments); +SOAPModelBuilder builder = OMXMLBuilderFactory.createSOAPModelBuilder(attachments.getMultipartBody()); OMElement bodyElement = builder.getSOAPEnvelope().getBody().getFirstElement(); assertBeanEquals(expectedResult, ADBBeanUtil.parse(bean.getClass(), bodyElement.getXMLStreamReaderWithoutCaching())); } diff --git a/modules/jaxws/test/org/apache/axis2/jaxws/attachments/MTOMSerializationTests.java b/modules/jaxws/test/org/apache/axis2/jaxws/attachments/MTOMSerializationTests.java index d9871c8fc0..3a3b2e8b9e 100644 --- a/modules/jaxws/test/org/apache/axis2/jaxws/attachments/MTOMSerializationTests.java +++ b/modules/jaxws/test/org/apache/axis2/jaxws/attachments/MTOMSerializationTests.java @@ -29,6 +29,7 @@ import org.apache.axiom.om.OMText; import org.apache.axiom.soap.SOAPBody; import org.apache.axiom.soap.SOAPEnvelope; import org.apache.axiom.soap.SOAPFactory; +import org.apache.axiom.util.activation.DataHandlerContentTypeProvider; import org.apache.axiom.util.activation.DataHandlerUtils; import org.apache.axis2.jaxws.message.Block; import org.apache.axis2.jaxws.message.Message; @@ -162,6 +163,7 @@ public class MTOMSerializationTests extends TestCase { OMOutputFormat format = new OMOutputFormat(); format.setDoOptimize(true); format.setSOAP11(true); +format.setContentTypeProvider(DataHandlerContentTypeProvider.INSTANCE); ByteArrayOutputStream baos = new ByteArrayOutputStream(); soapOM.serializeAndConsume(baos, format); @@ -219,6 +221,7 @@ public class MTOMSerializationTests extends TestCase { OMOutputFormat format = new OMOutputFormat(); format.setDoOptimize(true); format.setSOAP11(true); +format.setContentTypeProvider(DataHandlerContentTypeProvider.INSTANCE); ByteArrayOutputStream baos = new ByteArrayOutputStream(); soapOM.serializeAndConsume(baos, format); diff --git a/modules/jaxws/test/org/apache/axis2/jaxws/message/MessagePersistanceTests.ja
[axis-axis2-java-core] branch dependabot/maven/org.codehaus.plexus-plexus-archiver-4.6.0 updated (d327e17fd1 -> eebf9eaf35)
This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to branch dependabot/maven/org.codehaus.plexus-plexus-archiver-4.6.0 in repository https://gitbox.apache.org/repos/asf/axis-axis2-java-core.git discard d327e17fd1 Bump plexus-archiver from 4.5.0 to 4.6.0 add 06adac5c3a fix 'Source Code' link in main site that should point to GitHub add 874a2aeb88 Update Ubuntu version add 2a0874fa4b Adapt to changes in the Axiom API add eebf9eaf35 Bump plexus-archiver from 4.5.0 to 4.6.0 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 (d327e17fd1) \ N -- N -- N refs/heads/dependabot/maven/org.codehaus.plexus-plexus-archiver-4.6.0 (eebf9eaf35) 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/workflows/ci.yml | 4 ++-- .../src/test/java/org/apache/axis2/schema/AbstractTestCase.java| 4 ++-- .../org/apache/axis2/jaxws/attachments/MTOMSerializationTests.java | 3 +++ .../org/apache/axis2/jaxws/message/MessagePersistanceTests.java| 2 +- modules/kernel/pom.xml | 4 modules/kernel/src/org/apache/axis2/builder/MTOMBuilder.java | 2 +- .../apache/axis2/context/externalize/MessageExternalizeUtils.java | 4 ++-- .../src/org/apache/axis2/kernel/http/SOAPMessageFormatter.java | 7 +++ modules/osgi-tests/src/test/java/OSGiTest.java | 2 ++ modules/saaj/src/org/apache/axis2/saaj/SOAPPartImpl.java | 2 +- pom.xml| 5 + src/site/site.xml | 2 +- 12 files changed, 31 insertions(+), 10 deletions(-)
[axis-axis2-java-core] branch dependabot/maven/tomcat.version-10.1.2 updated (d2dc2b22db -> 10bcdbe1b1)
This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to branch dependabot/maven/tomcat.version-10.1.2 in repository https://gitbox.apache.org/repos/asf/axis-axis2-java-core.git omit d2dc2b22db Bump tomcat.version from 10.1.1 to 10.1.2 add 06adac5c3a fix 'Source Code' link in main site that should point to GitHub add 874a2aeb88 Update Ubuntu version add 2a0874fa4b Adapt to changes in the Axiom API add 10bcdbe1b1 Bump tomcat.version from 10.1.1 to 10.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 (d2dc2b22db) \ N -- N -- N refs/heads/dependabot/maven/tomcat.version-10.1.2 (10bcdbe1b1) 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/workflows/ci.yml | 4 ++-- .../src/test/java/org/apache/axis2/schema/AbstractTestCase.java| 4 ++-- .../org/apache/axis2/jaxws/attachments/MTOMSerializationTests.java | 3 +++ .../org/apache/axis2/jaxws/message/MessagePersistanceTests.java| 2 +- modules/kernel/pom.xml | 4 modules/kernel/src/org/apache/axis2/builder/MTOMBuilder.java | 2 +- .../apache/axis2/context/externalize/MessageExternalizeUtils.java | 4 ++-- .../src/org/apache/axis2/kernel/http/SOAPMessageFormatter.java | 7 +++ modules/osgi-tests/src/test/java/OSGiTest.java | 2 ++ modules/saaj/src/org/apache/axis2/saaj/SOAPPartImpl.java | 2 +- pom.xml| 5 + src/site/site.xml | 2 +- 12 files changed, 31 insertions(+), 10 deletions(-)
[axis-axis2-java-core] branch dependabot/maven/org.mockito-mockito-core-4.9.0 updated (dbf903ac98 -> b75014b45b)
This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to branch dependabot/maven/org.mockito-mockito-core-4.9.0 in repository https://gitbox.apache.org/repos/asf/axis-axis2-java-core.git omit dbf903ac98 Bump mockito-core from 4.8.1 to 4.9.0 add 06adac5c3a fix 'Source Code' link in main site that should point to GitHub add 874a2aeb88 Update Ubuntu version add 2a0874fa4b Adapt to changes in the Axiom API add b75014b45b Bump mockito-core from 4.8.1 to 4.9.0 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 (dbf903ac98) \ N -- N -- N refs/heads/dependabot/maven/org.mockito-mockito-core-4.9.0 (b75014b45b) 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/workflows/ci.yml | 4 ++-- .../src/test/java/org/apache/axis2/schema/AbstractTestCase.java| 4 ++-- .../org/apache/axis2/jaxws/attachments/MTOMSerializationTests.java | 3 +++ .../org/apache/axis2/jaxws/message/MessagePersistanceTests.java| 2 +- modules/kernel/pom.xml | 4 modules/kernel/src/org/apache/axis2/builder/MTOMBuilder.java | 2 +- .../apache/axis2/context/externalize/MessageExternalizeUtils.java | 4 ++-- .../src/org/apache/axis2/kernel/http/SOAPMessageFormatter.java | 7 +++ modules/osgi-tests/src/test/java/OSGiTest.java | 2 ++ modules/saaj/src/org/apache/axis2/saaj/SOAPPartImpl.java | 2 +- pom.xml| 5 + src/site/site.xml | 2 +- 12 files changed, 31 insertions(+), 10 deletions(-)