Maven assembly -- how to create the project JAR with version included, but the artifact tar.gz file without?

3.2k Views Asked by At

Using Maven I want to create 1) a JAR file for my current project with the current version included in the file name, myproject-version.jar, and 2) an overall artifact in tar.gzip format containing the project's JAR file and all dependency JARs in a lib directory and various driver scripts in a bin directory, but without the version number or an arbitrary ID in the name. I have this working somewhat using the assembly plugin, in that if I use the below pom.xml and assembly.xml then when I run 'mvn package' I can get a tar.gzip file with the JARs and scripts included as desired, however I don't seem to be able to get the naming/versioning correct -- either I get both the project's JAR file and the tar.gzip file with the version number or not depending on the build/finalName used. How can I specify these separately, and is it impossible to build the final artifact without an ID appended to the artifact name? For example I'd like to have my project's JAR file be named myproject-0.0.1-SNAPSHOT.jar and the overall "uber" artifact be named myproject.tar.gz (no version number or additional ID appended to the name). Is this possible?

My current pom.xml and asssembly.xml are included below.

pom.xml:

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">

    <modelVersion>4.0.0</modelVersion>

    <groupId>mygroup</groupId>
    <artifactId>myproject</artifactId>
    <packaging>jar</packaging>
    <version>0.0.1-SNAPSHOT</version>
    <name>myproject</name>
    <url>http://maven.apache.org</url>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    </properties>

    <dependencies>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.11</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>joda-time</groupId>
            <artifactId>joda-time</artifactId>
            <version>2.3</version>
        </dependency>
    </dependencies>

    <build>
        <finalName>${project.artifactId}-${project.version}</finalName>
        <plugins>
            <plugin>
                <artifactId>maven-assembly-plugin</artifactId>
                <version>2.4.1</version>
                <configuration>
                    <descriptors>
                        <descriptor>src/main/maven/assembly.xml</descriptor>
                    </descriptors>
                </configuration>
                <executions>
                    <execution>
                        <id>make-assembly</id> <!-- this is used for inheritance merges -->
                        <phase>package</phase> <!-- bind to the packaging phase -->
                        <goals>
                            <goal>single</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>    
</project>

assembly.xml:

<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0 http://maven.apache.org/xsd/assembly-1.1.0.xsd">
    <id>bin</id>
    <formats>
        <format>tar.gz</format>
    </formats>
    <fileSets>
        <!-- the following file set includes the Python scripts/modules used to drive the monthly processing runs -->
        <fileSet>
            <directory>src/main/python</directory>
            <outputDirectory>bin</outputDirectory>
            <includes>
                <include>indices_processor.py</include>
                <include>concat_timeslices.py</include>
            </includes>
        </fileSet>
        <!-- the following file set includes the JAR artifact built by the package goal -->
        <fileSet>
            <directory>target</directory>
            <outputDirectory>lib</outputDirectory>
            <includes>
                <include>*.jar</include>
            </includes>
        </fileSet>
    </fileSets>
    <dependencySets>
        <!-- the following dependency set includes the dependency JARs needed by the main Java executable for indicator processing -->
        <dependencySet>
            <outputDirectory>lib</outputDirectory>
            <useProjectArtifact>true</useProjectArtifact>
            <scope>runtime</scope>
            <unpack>false</unpack>
        </dependencySet>
    </dependencySets>
</assembly> 

Thanks in advance for any suggestions.

2

There are 2 best solutions below

0
On BEST ANSWER

Just use ${project.artifactId} as the value for your finalName in your assembly configuration.

Example derived from your config (note the finalName element inside configuration):

        <plugin>
            <artifactId>maven-assembly-plugin</artifactId>
            <version>2.4.1</version>
            <configuration>
                <descriptors>
                    <descriptor>src/main/maven/assembly.xml</descriptor>
                </descriptors>
                <finalName>${project.artifactId}</finalName>
            </configuration>
            ...
        </plugin>

finalName for an assembly defaults to ${project.build.finalName} if you don't change it. The default value for ${project.build.finalName} is ${project.artifactId}-${project.version}

0
On

I think you are looking for this: http://maven.apache.org/plugins/maven-assembly-plugin/single-mojo.html#finalName just put it in the configuration of the plugin. however, i think you shouldn't remove the version if you planning to upload it to some repository.