This is an automated email from the ASF dual-hosted git repository. ggrzybek pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/karaf.git
commit 594a1e514a04d9fd5d9139be832f8346a307f86d Author: Grzegorz Grzybek <gr.grzy...@gmail.com> AuthorDate: Tue Feb 16 10:32:11 2021 +0100 Fix SoapExampleTest by importing javax.jws without a range (this package is exported from system) (cherry picked from commit 1ea8087f99f60a62b8dca39e868b11e74eb95ee8) --- examples/karaf-soap-example/karaf-soap-example-blueprint/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/karaf-soap-example/karaf-soap-example-blueprint/pom.xml b/examples/karaf-soap-example/karaf-soap-example-blueprint/pom.xml index 3a0cbc5..373686d 100644 --- a/examples/karaf-soap-example/karaf-soap-example-blueprint/pom.xml +++ b/examples/karaf-soap-example/karaf-soap-example-blueprint/pom.xml @@ -54,7 +54,7 @@ <instructions> <Export-Package>org.apache.karaf.examples.soap.blueprint</Export-Package> <Import-Package> - javax.jws;version="[1,3)", + javax.jws;version=!, * </Import-Package> </instructions>