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 b4a237d attempt to fix Travis build on JDK 9
b4a237d is described below
commit b4a237dbcd41ef6a06d0bf3fd4dc58de0ecd9c96
Author: robert lazarski <[email protected]>
AuthorDate: Sun Sep 6 07:00:58 2020 -1000
attempt to fix Travis build on JDK 9
---
modules/adb-tests/pom.xml | 10 ++++++++++
pom.xml | 7 ++++---
2 files changed, 14 insertions(+), 3 deletions(-)
diff --git a/modules/adb-tests/pom.xml b/modules/adb-tests/pom.xml
index 4aaf153..aff3a73 100644
--- a/modules/adb-tests/pom.xml
+++ b/modules/adb-tests/pom.xml
@@ -514,6 +514,16 @@
<artifactId>jaxws-tools</artifactId>
<version>${jaxws.tools.version}</version>
</dependency>
+ <dependency>
+ <groupId>com.sun.xml.messaging.saaj</groupId>
+ <artifactId>saaj-impl</artifactId>
+ <version>${saaj.impl.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>javax.xml.soap</groupId>
+ <artifactId>saaj-api</artifactId>
+ <version>${saaj.api.version}</version>
+ </dependency>
</dependencies>
</plugin>
<plugin>
diff --git a/pom.xml b/pom.xml
index d735a8b..615d740 100644
--- a/pom.xml
+++ b/pom.xml
@@ -557,7 +557,8 @@
<jaxws.rt.version>2.3.3</jaxws.rt.version>
<jaxws.api.version>2.3.1</jaxws.api.version>
<jsr311.api.version>1.1.1</jsr311.api.version>
-
+ <saaj.impl.version>1.5.2</saaj.impl.version>
+ <saaj.api.version>1.3.5</saaj.api.version>
<!-- This variable is used in some Xdocs and is substituted using
Velocity. Note that
we can't use the project.version variable directly because of the
dot. See
http://maven.apache.org/plugins/maven-site-plugin/examples/creating-content.html
-->
@@ -645,12 +646,12 @@
<dependency>
<groupId>com.sun.xml.messaging.saaj</groupId>
<artifactId>saaj-impl</artifactId>
- <version>1.5.2</version>
+ <version>${saaj.impl.version}</version>
</dependency>
<dependency>
<groupId>javax.xml.soap</groupId>
<artifactId>saaj-api</artifactId>
- <version>1.3.5</version>
+ <version>${saaj.api.version}</version>
</dependency>
<dependency>
<groupId>com.sun.xml.ws</groupId>