All Downloads are FREE. Search and download functionalities are using the official Maven repository.

maven_templates.maven-assembly-plugin.xml Maven / Gradle / Ivy

There is a newer version: 4.4.0
Show newest version
<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-assembly-plugin</artifactId>
    <version>3.6.0</version>
    <configuration>
        <descriptors>
            <descriptor>src/assembly/all-dependencies.xml</descriptor>
        </descriptors>
        <finalName>NAME_OF_YOUR_JAR</finalName>
        <appendAssemblyId>false</appendAssemblyId>
        <archive>
            <manifest>
                <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
            </manifest>
        </archive>
    </configuration>
    <executions>
        <execution>
            <id>make-assembly</id>
            <phase>package</phase>
            <goals>
                <goal>single</goal>
            </goals>
        </execution>
    </executions>
</plugin>




© 2015 - 2024 Weber Informatics LLC | Privacy Policy