Hi,

i've taken a look at your problems....the first things which came to my mind
is that the repository you defined
(http://repository.jboss.org/nexus/content/groups/public//org/apache)
contains only SNAPSHOT's of the maven-surefire-plugin which is
wrong...(Maven Central is your friend)...

Furthermore i have seen (or better) it looks like that you are using a
repository manager (Nexus)...so you should remove all repository definitions
from your pom and do the configuration in the repository manager....

An other point is that you are configuring the maven-deploy-plugin but that
should be done in the distributionManagement instead...(i know you wrote you
removed it...)...


And last but not least what about your configuration of the
maven-jar-plugin:

                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-jar-plugin</artifactId>
                <version>2.1-jboss-1</version>
                <executions>
                    <execution>
                        <id>make-a-jar</id>
                        <phase>compile</phase>
                        <goals>
                            <goal>jar</goal>
                        </goals>
                    </execution>
                </executions>

Haven't you defined a packaging type ? Or just left it out...(default:
jar)...but this looks more like a web-application so your packaging should
be "war"....and the above plugin with this version does not exist in
Maven-Central ? 

Kind regards
Karl Heinz Marbaise

-----
Kind regards
Karl Heinz Marbaise
----
http://www.soebes.de
http://www.skmwiki.de
http://supose.org/wiki/supose
--
View this message in context: 
http://maven.40175.n5.nabble.com/Need-some-help-with-mvn-install-command-tp5017339p5017446.html
Sent from the Maven - Users mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
For additional commands, e-mail: users-h...@maven.apache.org

Reply via email to