Skip to content

Commit

Permalink
WICKET-6999 Update bundle plugin to support slf4j [1.7,3)
Browse files Browse the repository at this point in the history
  • Loading branch information
mattrpav committed Sep 30, 2022
1 parent 44e7a4a commit f2edd61
Showing 1 changed file with 17 additions and 6 deletions.
23 changes: 17 additions & 6 deletions pom.xml
Expand Up @@ -190,7 +190,7 @@
<!-- Maven plugins -->
<japicmp-maven-plugin.version>0.15.5</japicmp-maven-plugin.version>
<maven-archetype-plugin.version>3.2.0</maven-archetype-plugin.version>
<maven-bundle-plugin.version>5.1.3</maven-bundle-plugin.version>
<maven-bundle-plugin.version>5.1.8</maven-bundle-plugin.version>
<maven-clean-plugin.version>3.1.0</maven-clean-plugin.version>
<maven-compiler-plugin.version>3.8.1</maven-compiler-plugin.version>
<maven-deploy-plugin.version>2.8.2</maven-deploy-plugin.version>
Expand Down Expand Up @@ -891,18 +891,29 @@
<extensions>true</extensions>
<executions>
<execution>
<id>bundle-manifest</id>
<phase>process-classes</phase>
<id>default-bundle</id>
<phase>package</phase>
<goals>
<goal>manifest</goal>
<goal>bundle</goal>
</goals>
<configuration>
<instructions>
<Require-Capability>osgi.ee;filter:="(&amp;(osgi.ee=JavaSE)(version=11.0))"</Require-Capability>
<Export-Package>*</Export-Package>
<Import-Package>org.apache.wicket*,
org.junit.jupiter*</Import-Package>
<Import-Package>
!java*,
!kotlin*,
!org.apache.wicket.util*,
!sun.nio.ch,
org.slf4j;version="[1.7,3)",
org.slf4j.event;version="[1.7,3)",
org.slf4j.helpers;version="[1.7,3)",
org.slf4j.spi;version="[1.7,3)",
org.apache.wicket*,
org.junit.jupiter*,*</Import-Package>
<DynamicImport-Package>*</DynamicImport-Package>
<_nouses>true</_nouses>
<!-- _noee>true</_noee -->
</instructions>
</configuration>
</execution>
Expand Down

0 comments on commit f2edd61

Please sign in to comment.