I am having this maven build issue, please help take a look and provide some pointers, any pointers, thanks!! The final artifects include one zip and one jar, but unfortunately I only got the jar file, how to install and deploy the zip created to the right repository on server, thanks!

The assembly plugin is used to package all libraries to one executable jar which is done successfully already, but I still need to have smdoctor-${SMDOCTOR_VERSION}.zip created in antrun installed and deployed just like the jar, what am I supposed to do to pull that off...

pom.xml

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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>com.abc.sm.doctor</groupId>
<artifactId>smdoctor</artifactId>
<packaging>jar</packaging>
<version>${SMDOCTOR_VERSION}</version>
<name>sm doctor</name>
<properties>
    <TEMP_PATH>${project.build.directory}/temp</TEMP_PATH>
    <SMDOCTOR_VERSION>1.0.0</SMDOCTOR_VERSION>
</properties>
<build>
    <sourceDirectory>src/java</sourceDirectory>
    <resources>
        <resource>
            <directory>src/resources</directory>
        </resource>
    </resources>
    <plugins>
        <plugin>
            <artifactId>maven-assembly-plugin</artifactId>
            <configuration>
                <descriptors>
                    <descriptor>dist.xml</descriptor>
                </descriptors>
            </configuration>
            <executions>
                <execution>
                    <id>make-assembly</id>
                    <phase>package</phase>
                    <goals>
                        <goal>single</goal>
                    </goals>
                </execution>
            </executions>
        </plugin>
        <plugin>
            <artifactId>maven-antrun-plugin</artifactId>
            <executions>
                <execution>
                    <id>prepare-content</id>
                    <goals>
                        <goal>run</goal>
                    </goals>
                    <phase>package</phase>
                    <configuration>
                        <tasks>
                            <copy file="${TEMP_PATH}/../smdoctor-${SMDOCTOR_VERSION}-exe.jar"
                                tofile="${TEMP_PATH}/smdoctor.jar" />
                            <copy todir="${TEMP_PATH}">
                                <fileset dir="data" />
                            </copy>
                            <copy todir="${TEMP_PATH}/config">
                                <fileset dir="config" />
                            </copy>
                            <zip
                                destfile="${project.build.directory}/smdoctor-${SMDOCTOR_VERSION}.zip"
                                basedir="${TEMP_PATH}" />
                            <delete dir="${TEMP_PATH}" includeemptydirs="true" />
                            <delete dir="${project.build.directory}" includeemptydirs="true" includes="smdoctor-${SMDOCTOR_VERSION}.jar"/>
                            <copy file="${project.build.directory}/smdoctor-${SMDOCTOR_VERSION}-exe.jar"
                                tofile="${project.build.directory}/smdoctor-${SMDOCTOR_VERSION}.jar" />
                            <!--delete dir="${project.build.directory}" includeemptydirs="true" includes="smdoctor-${SMDOCTOR_VERSION}-exe.jar"/-->
                        </tasks>
                    </configuration>
                </execution>
            </executions>
        </plugin>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-compiler-plugin</artifactId>
            <configuration>
                <source>1.5</source>
                <target>1.5</target>
                <debug>true</debug>
                <debuglevel>source,lines</debuglevel>
                <showDeprecation>true</showDeprecation>
                <archive>
                </archive>
            </configuration>
        </plugin>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-jar-plugin</artifactId>
            <configuration>
                <archive>
                    <manifest>
                        <addClasspath>true</addClasspath>
                        <classpathPrefix>lib/</classpathPrefix>
<mainClass>...</mainClass>
                    </manifest>
                </archive>
            </configuration>
            <version>2.3.1</version>
        </plugin>
    </plugins>
</build>
<dependencies>
         ......
</dependencies>
</project>

dist.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>exe</id>
<formats>
    <format>jar</format>
</formats>
<includeBaseDirectory>false</includeBaseDirectory>
<dependencySets>
    <dependencySet>
        <!--outputDirectory>lib</outputDirectory -->
        <outputFileNameMapping></outputFileNameMapping>
        <unpack>true</unpack>
        <!--scope>runtime</scope -->
        <includes>
            <include>commons-logging:commons-logging</include>
            <include>com.beust:jcommander</include>
            <include>com.sun.jna:jna</include>
            <include>org.eclipse:swt</include>
            <include>junit:junit</include>
            <include>log4j:log4j</include>
        </includes>
    </dependencySet>
</dependencySets>
<fileSets>
    <fileSet>
        <directory>target/classes</directory>
        <outputDirectory>/</outputDirectory>
    </fileSet>
</fileSets>

link|improve this question

46% accept rate
First: why things like <version>${SMDOCTOR_VERSION}</version>? That's not a good idea in Maven. If you like to use the current version of your project just use ${project.version} but don't define the version of module/project via a property. – khmarbaise Aug 11 '11 at 8:03
1  
Make a second execution block of the assembly-plugin and create the zip via maven-assembly as well instead via Ant-Run... – khmarbaise Aug 11 '11 at 8:04
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.