This is an automated email from the ASF dual-hosted git repository.
reta pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/cxf.git
The following commit(s) were added to refs/heads/master by this push:
new a7c1285 Fix Spring 5 OSGi version constraints (#506)
a7c1285 is described below
commit a7c1285a44f1be74b442048eedc7a1c31c8e4e9b
Author: Jasper Siepkes <[email protected]>
AuthorDate: Thu Jan 24 12:57:58 2019 +0100
Fix Spring 5 OSGi version constraints (#506)
Commit 424591420b052a2b557d3f1dd48609c9858d9809 bumped Spring to version
5 however the OSGi version constraints still only allowed max version 4
of Spring.
---
parent/pom.xml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/parent/pom.xml b/parent/pom.xml
index 1083114..c6fbadc 100644
--- a/parent/pom.xml
+++ b/parent/pom.xml
@@ -57,7 +57,7 @@
<cxf.osgi.import />
<cxf.osgi.symbolic.name>${project.groupId}.${project.artifactId}</cxf.osgi.symbolic.name>
<cxf.osgi.dynamic.import />
- <cxf.osgi.spring.version>[3.1,5)</cxf.osgi.spring.version>
+ <cxf.osgi.spring.version>[3.1,6)</cxf.osgi.spring.version>
<cxf.osgi.spring.osgi.version>[1.2.0,2)</cxf.osgi.spring.osgi.version>
<cxf.osgi.slf4j.version>[1.5,2)</cxf.osgi.slf4j.version>
<cxf.osgi.javax.annotation.version>[1.2,2)</cxf.osgi.javax.annotation.version>