Hi,

I am having trouble deploying a 'tar.gz' assembly of a parent project
using the deploy goal.

The parent project has a number of child module projects.

Essentially I am running the following on the parent project:

    mvn package assembly:assembly deploy

and what is happening is that all the child jars are being deployed but
the important artifact - the parent 'tar.gz' assembly is not. The
interesting thing is that the 'tar.gz' file is being created - just not
deployed.

Any ideas as to what I am doing wrong?

Thanks,
Evan Toliopoulos
P.S.  My parent pom.xml follows...
-------------------
<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.emagineinternational</groupId>
    <artifactId>sms-transceiver</artifactId>
    <packaging>pom</packaging>
    <version>6.5.0-SNAPSHOT</version>
    <name>sms-transceiver</name>
    <url>http://maven.apache.org</url>

    <dependencies>
        <dependency>
            <groupId>commons-logging</groupId>
            <artifactId>commons-logging</artifactId>
            <version>1.1</version>
        </dependency>
        <dependency>
            <groupId>log4j</groupId>
            <artifactId>log4j</artifactId>
            <version>1.2.14</version>
        </dependency>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.3.1</version>
            <scope>test</scope>
        </dependency>
    </dependencies>

    <modules>
        <module>./sms-transceiver-config-jaxb</module>
        <module>./sms-transceiver-common</module>
        <module>./sms-transceiver-config</module>
        <module>./sms-transceiver-mq</module>
        <module>./sms-transceiver-db-receiver</module>
        <module>./sms-transceiver-db-transmitter</module>
        <module>./sms-transceiver-smpp-receiver</module>
        <module>./sms-transceiver-smpp-transmitter</module>
    </modules>

    <build>
        <plugins>
        
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <configuration>
                    <source>1.6</source>
                    <target>1.6</target>
                </configuration>
            </plugin>
            
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-release-plugin</artifactId>
                <version>2.0-beta-5</version>
                <configuration>
                    
<tagBase>svn://svn.emagineinternational.com/tags/sms-transceiver</tagBase>
                </configuration>
            </plugin>
            
        </plugins>
    </build>


    <profiles>

        <profile>
            <id>parent-developer-assembly-profile</id>
            <activation>
                <property>
                    <name>developer.profile</name>
                    <value>true</value>
                </property>
            </activation>
            <build>
                <plugins>
                    <plugin>
                        <inherited>false</inherited>
                        <artifactId>maven-assembly-plugin</artifactId>
                        <configuration>
                            <descriptors>
                                
<descriptor>src/main/assembly/developer-assembly.xml</descriptor>
                            </descriptors>
                        </configuration>
                    </plugin>
                </plugins>
            </build>
        </profile>
        
        <profile>
            <id>parent-release-assembly-profile</id>
            <activation>
                <property>
                    <name>release.profile</name>
                    <value>true</value>
                </property>
            </activation>
            <build>
                <plugins>
                    <plugin>
                        <inherited>false</inherited>
                        <artifactId>maven-assembly-plugin</artifactId>
                        <configuration>
                            <descriptors>
                                
<descriptor>src/main/assembly/release-assembly.xml</descriptor>
                            </descriptors>
                        </configuration>
                    </plugin>
                </plugins>
            </build>
        </profile>
        
    </profiles>


    <repositories>
        <repository>
            <id>EmagineMavenRepository</id>
            <url>http://angie/maven-repository</url>
        </repository>
    </repositories>
  
  
    <distributionManagement>
        <repository>
            <id>emagine-repository</id>
            <name>Emagine Repository</name>
            <url>scp://angie/opt/emagine-repository/release</url>
        </repository>
        <snapshotRepository>
            <id>emagine-repository</id>
            <name>Emagine Repository</name>
            <url>scp://angie/opt/emagine-repository/snapshot</url>
        </snapshotRepository>
    </distributionManagement>

    <scm>
        
<connection>scm:svn:svn://svn.emagineinternational.com/trunk/sms-transceiver</connection>
        
<developerConnection>scm:svn:svn://svn.emagineinternational.com/trunk/sms-transceiver</developerConnection>
        <url>svn://svn.emagineinternational.com/trunk/sms-transceiver</url>
    </scm>
    
</project>

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to