jira-importer commented on issue #182: URL: https://github.com/apache/maven-war-plugin/issues/182#issuecomment-2967848440
**[Karl Heinz Marbaise](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=khmarbaise)** commented [Jakub Bochenski](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=jbochenski) Have you taking a look into the documentation of the [exploded goal](https://maven.apache.org/plugins/maven-war-plugin/exploded-mojo.html) given an example what kind of things can be configured take a look here: ```xml <project> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-war-plugin</artifactId> <version>3.2.3</version> <configuration> <archive> <addMavenDescriptor/> <compress/> <forced/> <index/> <pomPropertiesFile/> <manifestFile/> <manifest> <addClasspath/> <addDefaultEntries/> <addDefaultImplementationEntries/> <addDefaultSpecificationEntries/> <addBuildEnvironmentEntries/> <addExtensions/> <classpathLayoutType/> <classpathPrefix/> <customClasspathLayout/> <mainClass/> <packageName/> <useUniqueVersions/> </manifest> <manifestEntries> <key>value</key> </manifestEntries> <manifestSections> <manifestSection> <name/> <manifestEntries> <key>value</key> </manifestEntries> <manifestSection/> </manifestSections> </archive> </configuration> </plugin> </plugins> </build> </project> ``` Also see for details https://maven.apache.org/shared/maven-archiver/index.html Will that help? -- 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