This is an automated email from the ASF dual-hosted git repository. solomax pushed a commit to branch fileupload-jar-clean-up in repository https://gitbox.apache.org/repos/asf/wicket.git
commit 36e0d9063bc3b9dc2d4d76a36a41161732a3860a Author: Maxim Solodovnik <[email protected]> AuthorDate: Wed May 31 11:36:23 2023 +0700 Dependencies are excluded from final jar --- wicket-commons-fileupload/pom.xml | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/wicket-commons-fileupload/pom.xml b/wicket-commons-fileupload/pom.xml index b9878274a4..6d2cd34d94 100644 --- a/wicket-commons-fileupload/pom.xml +++ b/wicket-commons-fileupload/pom.xml @@ -317,13 +317,9 @@ <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> - <dependencies> - <dependency> - <groupId>biz.aQute.bnd</groupId> - <artifactId>biz.aQute.bndlib</artifactId> - <version>6.4.0</version> - </dependency> - </dependencies> + <configuration> + <excludeDependencies>true</excludeDependencies> + </configuration> </plugin> <plugin> <groupId>org.moditect</groupId>
