Johnny Thanks for the feedback ... You where right ... In fact I had two errors in the groupId!
Chris -----Original Message----- From: Johnny Ruiz [mailto:[EMAIL PROTECTED] Sent: 08 July 2005 00:53 To: Maven Users List Subject: Re: m2 beta-3: Error in "Getting Started Example" Hi Chris, I think you have mistyped the groupId of your top level pom.xml. ==top level pmm.xml== <project> <modelVersion>4.0.0</modelVersion> <groupId>uk.ac.swan.testm2</groupId> ---->>>>> IT's uk.ac.swan.testm2 <version>1.0-SNAPSHOT</version> <artifactId>app</artifactId> ..... and so forth But in your <parent> declaration in ==my-app pom.xml== and ==my-webapp pom.xml you specified it differently. <parent> <groupId>uk.swan.ac.swan.testm2</groupId> ---->>>>> IT's uk.swan.ac.swan.testm2 <artifactId>app</artifactId> <version>1.0-SNAPSHOT</version> </parent> I't might be the problem. Please try making them the same (use uk.ac.swan.testm2 instead) then command >>>> m2 clean:clean install again and check if this works. Regards, Johnny Ruiz -- Chris Jobling ([EMAIL PROTECTED]) Working from home... --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
