Hi,

I want to deploy a project POM file only. I added maven-deploy plugin as
follows. When I run

mvn dpeloy:deploy-file

It still complains about missing modules directories. I dont want to build
the modules. I want to generate the pom file only. How can I do this ?

        <parent>

                <groupId>com.abc</groupId>
                <artifactId>abc-parent</artifactId>
                <version>2.4</version>
        </parent>
        <groupId>com.abc.t3</groupId>
        <artifactId>t3</artifactId>
        <version>1.1</version>
        <packaging>pom</packaging>
        <name>ABC T3 </name>
        <build>

                <plugins>

        <plugin>
                <groupId>org.apache.maven.plugins</groupId>
               <artifactId>maven-deploy-plugin</artifactId>
               <version>2.4</version>
                        </plugin>
                </plugins>

        </build>

-- 
View this message in context: 
http://www.nabble.com/maven-deploy-plugin-tp24902976p24902976.html
Sent from the Maven - Users mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to