aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Timoney <dtimoney@att.com>2020-09-04 16:17:35 -0400
committerDan Timoney <dtimoney@att.com>2020-09-05 00:42:45 +0000
commit2ef7660af0a22d59b05f1255ed34b9da796a7316 (patch)
tree47ad8808003e5ee9aa1d0ba6d44a33f0c8dda0fe
parentb5a51b4fceace211d10d6dd4accd5545e48824f1 (diff)
Add implementation dependency for jax-ws
For Java 11, jax-ws must be installed as a separate dependency which must be reflected as a dependency of the aafshiro karaf feature. Issue-ID: CCSDK-2710 Signed-off-by: Dan Timoney <dtimoney@att.com> Change-Id: I9ea15b2983b604145e1e258df996ef79461889e7
-rw-r--r--.gitignore3
-rwxr-xr-xaafshiro/features/ccsdk-aafshiro/pom.xml5
2 files changed, 8 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index f59381737..afad7c7f9 100644
--- a/.gitignore
+++ b/.gitignore
@@ -12,6 +12,9 @@
# Generated models and features
**/bin/*
+# Added for vs code
+.vscode
+
# MANIFEST.MF is updated on every clean install
**/src/main/resources/META-INF/
**/src/main/yang-gen-sal
diff --git a/aafshiro/features/ccsdk-aafshiro/pom.xml b/aafshiro/features/ccsdk-aafshiro/pom.xml
index 24caae0ff..752aa00a6 100755
--- a/aafshiro/features/ccsdk-aafshiro/pom.xml
+++ b/aafshiro/features/ccsdk-aafshiro/pom.xml
@@ -54,5 +54,10 @@
<groupId>org.apache.servicemix.specs</groupId>
<artifactId>org.apache.servicemix.specs.saaj-api-1.3</artifactId>
</dependency>
+ <dependency>
+ <groupId>org.apache.servicemix.specs</groupId>
+ <artifactId>org.apache.servicemix.specs.jaxws-api-2.3</artifactId>
+ <version>2.3_1</version>
+ </dependency>
</dependencies>
</project>