jira-importer commented on issue #188: URL: https://github.com/apache/maven-war-plugin/issues/188#issuecomment-2967848910
**[Frank Cornelis](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=fcorneli)** commented I've created a quick-and-dirty patch that does the trick somehow. If you have a dependency named groupId:artifactId:version that you which to put somewhere else than WEB-INF/lib, you can add the following to the maven-war-plugin configuration: \<configuration> \<dependencies> \<dependency> \<groupId>groupId\</groupId> \<artifactId>artifactId\</artifactId> \<targetFilename>my-nice-applet-filename.jar\</targetFilename> \<targetPath>/\</targetPath> \</dependency> \</dependencies> \</configuration> Both targetFilename and targetPath are optional, but it makes sense to define at least one when using the dependency configuration. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@maven.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org