On 7/18/07, Erik Allais <[EMAIL PROTECTED]> wrote:
Here the step : - i create my folder - i create my pom.xml file which contains : <?xml version="1.0" encoding="UTF-8"?> <project> <modelVersion>4.0.0</modelVersion> <groupId>com.altervisions.connect.sample</groupId> <artifactId>connect</artifactId> <version>1.0-SNAPSHOT</version> <packaging>pom</packaging> <name>Sample - Modulo Connect v0.2</name> <url>http://www.altervisions.com</url> </project> - i create my first su : in this case the jsr-181 su mvn archetype:create -DartifactId=mc-jsr181-su -DarchetypeGroupId=org.apache.servicemix.tooling \ -DarchetypeArtifactId=servicemix-jsr181-annotated-service-unit -DarchetypeVersion=3.1.1-incubating \ -DremoteRepositories=http://people.apache.org/repo/m2-incubating-repository The directory is created and my pom.xml is changed like that : <?xml version="1.0" encoding="UTF-8"?> <project> <modelVersion>4.0.0</modelVersion> <groupId>com.altervisions.connect.sample</groupId> <artifactId>connect</artifactId> <version>1.0-SNAPSHOT</version> <packaging>pom</packaging> <name>Sample - Modulo Connect v0.2</name> <url>http://www.altervisions.com</url> <modules> <module>mc-jsr181-su</module> </modules> </project> - Then i try to create the second archetype : mvn archetype:create -DartifactId=mc-http-su -DarchetypeGroupId=org.apache.servicemix.tooling \ -DarchetypeArtifactId=servicemix-http-consumer-service-unit -DarchetypeVersion=3.1.1-incubating \ -DremoteRepositories=http://people.apache.org/repo/m2-incubating-repository
I just copy/pasted the command above and executed it and received the same error. Then I added the groupId to the command it executed just fine. Below is the command I used: mvn archetype:create -DartifactId=mc-http-su -DarchetypeGroupId=org.apache.servicemix.tooling -DarchetypeArtifactId=servicemix-http-consumer-service-unit -DarchetypeVersion=3.1.1-incubating -DremoteRepositories=http://people.apache.org/repo/m2-incubating-repository -DgroupId=com.mycompany Bruce -- perl -e 'print unpack("u30","D0G)[EMAIL PROTECTED]&5R\"F)R=6-E+G-N>61E<D\!G;6%I;\"YC;VT*" );' Apache Geronimo - http://geronimo.apache.org/ Apache ActiveMQ - http://activemq.org/ Apache ServiceMix - http://servicemix.org/ Castor - http://castor.org/
