This is an automated email from the ASF dual-hosted git repository. reta pushed a commit to branch 3.4.x-fixes in repository https://gitbox.apache.org/repos/asf/cxf.git
commit 79a9746f25067998769d9ec1cd544f7bc7214348 Author: Andriy Redko <[email protected]> AuthorDate: Sun Jul 18 12:35:07 2021 -0400 Added cxf.bundle.activation.policy property to provide the ability to override bundle activation policy (#827) (cherry picked from commit 0bd68c03b0670248cd3c1f2afb669c43092b507e) --- parent/pom.xml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/parent/pom.xml b/parent/pom.xml index 7a9388f..ff16cf7 100644 --- a/parent/pom.xml +++ b/parent/pom.xml @@ -59,6 +59,7 @@ <cxf.easymock.version>4.3</cxf.easymock.version> <!-- OSGi related properties --> <cxf.fragment.host /> + <cxf.bundle.activation.policy>lazy</cxf.bundle.activation.policy> <cxf.bundle.activator /> <cxf.osgi.import /> <cxf.osgi.symbolic.name>${project.groupId}.${project.artifactId}</cxf.osgi.symbolic.name> @@ -648,7 +649,7 @@ <obrRepository>NONE</obrRepository> <instructions> <Bundle-SymbolicName>${cxf.osgi.symbolic.name}</Bundle-SymbolicName> - <Bundle-ActivationPolicy>lazy</Bundle-ActivationPolicy> + <Bundle-ActivationPolicy>${cxf.bundle.activation.policy}</Bundle-ActivationPolicy> <Implementation-Vendor>The Apache Software Foundation</Implementation-Vendor> <Implementation-Vendor-Id>org.apache</Implementation-Vendor-Id> <Implementation-Version>${cxf.osgi.version.clean}</Implementation-Version>
