RE: Maven ignores my archetype selection

2008-02-16 Thread Brian E. Fox
I think the list is currently embedded, but you might be able to add it to 
~home/.m2/archetype.xml, otherwise you'll need to back down to 1.0-alpha-7 
(this issue is fixed in 2.0-alpha-2 once it gets released)

-Original Message-
From: Tom Cook [mailto:[EMAIL PROTECTED] 
Sent: Saturday, February 16, 2008 5:13 PM
To: Maven Users List
Subject: Re: Maven ignores my archetype selection

Ah, OK, I see.  So how do I tell it that I want to use the trails
archetype?  It's not in the list it gives me.  Do I need to download the
archetype manually first?

Thanks for the help.

Tom

On Feb 17, 2008 1:35 AM, Brian E. Fox <[EMAIL PROTECTED]> wrote:

> The new ones prompt you from the command line. Just pick the one you need
> from the prompts.
>
> -Original Message-
> From: Tom Cook [mailto:[EMAIL PROTECTED]
> Sent: Saturday, February 16, 2008 4:07 AM
> To: Maven Users List
> Subject: Re: Maven ignores my archetype selection
>
> Thanks for the quick answer.  I don't particularly need old style
> commands,
> and didn't really realise there were 'old-style' and 'new-style' commands,
> I
> was just following the documentation - eg. Maven in 5
> Minutes,<
> http://maven.apache.org/guides/getting-started/maven-in-five-minutes.html
> >from
> which the first command in my post was taken.
>
> So, given that I don't need old-style commands, what do new-style commands
> look like?  Where can I find documentation on them?
>
> Regards,
> Tom
>
> On Sat, Feb 16, 2008 at 6:03 PM, Brian E. Fox <[EMAIL PROTECTED]>
> wrote:
>
> > Use org.apache.maven.plugins:maven-archetype-plugin:1.0-alpha-7:createif
> > you need the old style commands. The new version 2.0 has an issue with
> > backwards compat and should be fixed shortly.
> >
> > -Original Message-
> > From: Tom Cook [mailto:[EMAIL PROTECTED]
> > Sent: Friday, February 15, 2008 9:42 PM
> > To: users@maven.apache.org
> > Subject: Maven ignores my archetype selection
> >
> > Hi all,
> >
> > I hate asking noob questions, but I have looked in the bug tracker, the
> > FAQ,
> > the list archive and the doco and can't see any mention of it, so here
> > goes:
> >
> > I have downloaded maven 2.0.8 on my Ubuntu gutsy machine, unpacked it
> and
> > moved it to /usr/local/apache-maven.  I have set up my environment as
> > follows:
> >
> > >echo $M2
> > /usr/local/apache-maven/bin
> > >echo $M2_HOME
> > /usr/local/apache-maven
> > >echo $JAVA_HOME
> > /usr/lib/jvm/java-1.5.0-sun
> > >java -version
> > java version "1.5.0_13"
> > Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_13-b05)
> > Java HotSpot(TM) Client VM (build 1.5.0_13-b05, mixed mode, sharing)
> > >mvn -version
> > /usr/lib/jvm/java-1.5.0-sun/bin/java -classpath
> > /usr/local/apache-maven/boot/classworlds-1.1.jar -
> > Dclassworlds.conf=/usr/local/apache-maven/bin/m2.conf -
> > Dmaven.home=/usr/local/apache-maven org.codehaus.classworlds.Launcher
> > "-version"
> > Maven version: 2.0.8
> > Java version: 1.5.0_13
> > OS name: "linux" version: "2.6.22-14-generic" arch: "i386" Family:
> "unix"
> >
> > But when I try:
> >
> > >mvn archetype:create -DgroupId=com.my-package -DartifactId=my-app
> > [INFO] Scanning for projects...
> > [INFO] Searching repository for plugin with prefix: 'archetype'.
> > [INFO]
> > 
> > [INFO] Building Maven Default Project
> > [INFO]task-segment: [archetype:create] (aggregator-style)
> > [INFO]
> > 
> > [INFO] Preparing archetype:create
> > [INFO] No goals needed for project - skipping
> > Downloading:
> >
> >
> http://repo1.maven.org/maven2/com/my-package/wagon-http-shared/1.0-beta-2/wagon-http-shared-1.0-beta-2.pom
> > Downloading:
> >
> >
> http://repo1.maven.org/maven2/com/my-package/wagon-http-shared/1.0-beta-2/wagon-http-shared-1.0-beta-2.pom
> > [INFO] Setting property: classpath.resource.loader.class => '
> > org.codehaus.plexus.velocity.ContextClassLoaderResourceLoader'.
> > [INFO] Setting property: velocimacro.messages.on => 'false'.
> > [INFO] Setting property: resource.loader => 'classpath'.
> > [INFO] Setting property: resource.manager.logwhenfound => 'false'.
> > [INFO] [archetype:create]
> > Choose archetype:
> > 1: internal -> appfuse-basic-jsf (AppFuse archetype for creating a web
> > application with Hibernate, Spring and JSF)
> > 2: internal -> appfuse-basic-spring (AppFuse archetype for creating a
> web
> > application with Hibernate, Spring and Spring MVC)
> > 3: internal -> appfuse-basic-struts (AppFuse archetype for creating a
> web
> > application with Hibernate, Spring and Struts 2)
> > 4: internal -> appfuse-basic-tapestry (AppFuse archetype for creating a
> > web
> > application with Hibernate, Spring and Tapestry 4)
> > 5: internal -> appfuse-core (AppFuse archetype for creating a jar
> > application with Hibernate and Spring and XFire)
> > 6: internal -> appfuse-modular-jsf (AppFuse archetype for 

Re: Maven ignores my archetype selection

2008-02-16 Thread Tom Cook
Ah, OK, I see.  So how do I tell it that I want to use the trails
archetype?  It's not in the list it gives me.  Do I need to download the
archetype manually first?

Thanks for the help.

Tom

On Feb 17, 2008 1:35 AM, Brian E. Fox <[EMAIL PROTECTED]> wrote:

> The new ones prompt you from the command line. Just pick the one you need
> from the prompts.
>
> -Original Message-
> From: Tom Cook [mailto:[EMAIL PROTECTED]
> Sent: Saturday, February 16, 2008 4:07 AM
> To: Maven Users List
> Subject: Re: Maven ignores my archetype selection
>
> Thanks for the quick answer.  I don't particularly need old style
> commands,
> and didn't really realise there were 'old-style' and 'new-style' commands,
> I
> was just following the documentation - eg. Maven in 5
> Minutes,<
> http://maven.apache.org/guides/getting-started/maven-in-five-minutes.html
> >from
> which the first command in my post was taken.
>
> So, given that I don't need old-style commands, what do new-style commands
> look like?  Where can I find documentation on them?
>
> Regards,
> Tom
>
> On Sat, Feb 16, 2008 at 6:03 PM, Brian E. Fox <[EMAIL PROTECTED]>
> wrote:
>
> > Use org.apache.maven.plugins:maven-archetype-plugin:1.0-alpha-7:createif
> > you need the old style commands. The new version 2.0 has an issue with
> > backwards compat and should be fixed shortly.
> >
> > -Original Message-
> > From: Tom Cook [mailto:[EMAIL PROTECTED]
> > Sent: Friday, February 15, 2008 9:42 PM
> > To: users@maven.apache.org
> > Subject: Maven ignores my archetype selection
> >
> > Hi all,
> >
> > I hate asking noob questions, but I have looked in the bug tracker, the
> > FAQ,
> > the list archive and the doco and can't see any mention of it, so here
> > goes:
> >
> > I have downloaded maven 2.0.8 on my Ubuntu gutsy machine, unpacked it
> and
> > moved it to /usr/local/apache-maven.  I have set up my environment as
> > follows:
> >
> > >echo $M2
> > /usr/local/apache-maven/bin
> > >echo $M2_HOME
> > /usr/local/apache-maven
> > >echo $JAVA_HOME
> > /usr/lib/jvm/java-1.5.0-sun
> > >java -version
> > java version "1.5.0_13"
> > Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_13-b05)
> > Java HotSpot(TM) Client VM (build 1.5.0_13-b05, mixed mode, sharing)
> > >mvn -version
> > /usr/lib/jvm/java-1.5.0-sun/bin/java -classpath
> > /usr/local/apache-maven/boot/classworlds-1.1.jar -
> > Dclassworlds.conf=/usr/local/apache-maven/bin/m2.conf -
> > Dmaven.home=/usr/local/apache-maven org.codehaus.classworlds.Launcher
> > "-version"
> > Maven version: 2.0.8
> > Java version: 1.5.0_13
> > OS name: "linux" version: "2.6.22-14-generic" arch: "i386" Family:
> "unix"
> >
> > But when I try:
> >
> > >mvn archetype:create -DgroupId=com.my-package -DartifactId=my-app
> > [INFO] Scanning for projects...
> > [INFO] Searching repository for plugin with prefix: 'archetype'.
> > [INFO]
> > 
> > [INFO] Building Maven Default Project
> > [INFO]task-segment: [archetype:create] (aggregator-style)
> > [INFO]
> > 
> > [INFO] Preparing archetype:create
> > [INFO] No goals needed for project - skipping
> > Downloading:
> >
> >
> http://repo1.maven.org/maven2/com/my-package/wagon-http-shared/1.0-beta-2/wagon-http-shared-1.0-beta-2.pom
> > Downloading:
> >
> >
> http://repo1.maven.org/maven2/com/my-package/wagon-http-shared/1.0-beta-2/wagon-http-shared-1.0-beta-2.pom
> > [INFO] Setting property: classpath.resource.loader.class => '
> > org.codehaus.plexus.velocity.ContextClassLoaderResourceLoader'.
> > [INFO] Setting property: velocimacro.messages.on => 'false'.
> > [INFO] Setting property: resource.loader => 'classpath'.
> > [INFO] Setting property: resource.manager.logwhenfound => 'false'.
> > [INFO] [archetype:create]
> > Choose archetype:
> > 1: internal -> appfuse-basic-jsf (AppFuse archetype for creating a web
> > application with Hibernate, Spring and JSF)
> > 2: internal -> appfuse-basic-spring (AppFuse archetype for creating a
> web
> > application with Hibernate, Spring and Spring MVC)
> > 3: internal -> appfuse-basic-struts (AppFuse archetype for creating a
> web
> > application with Hibernate, Spring and Struts 2)
> > 4: internal -> appfuse-basic-tapestry (AppFuse archetype for creating a
> > web
> > application with Hibernate, Spring and Tapestry 4)
> > 5: internal -> appfuse-core (AppFuse archetype for creating a jar
> > application with Hibernate and Spring and XFire)
> > 6: internal -> appfuse-modular-jsf (AppFuse archetype for creating a
> > modular
> > application with Hibernate, Spring and JSF)
> > 7: internal -> appfuse-modular-spring (AppFuse archetype for creating a
> > modular application with Hibernate, Spring and Spring MVC)
> > 8: internal -> appfuse-modular-struts (AppFuse archetype for creating a
> > modular application with Hibernate, Spring and Struts 2)
> > 9: internal -> appfuse-modular-tapestry (App

Integration Testing with Maven

2008-02-16 Thread Alan Gutierrez


I am getting started with Maven 2. I currently use a Groovy +  
AntBuilder build for my projects.


I create parallel projects.

/codearea
  /pack
  /strata
  /depot

Let's say the "depot" project depends on "strata" which depends on  
"pack". I can cd to depot and run...


./builder siblingTest

And it will compile and test all projects. It will use the local  
projects for testing rather than jars. The "depot" project will use  
the newly build class files from the "strata" project. To my mind  
this tests the integration before I check in.


Is there a similar way to have Maven 2 to test against local  
development instances of projects?


Thank you.

Alan

--
Alan Gutierrez | [EMAIL PROTECTED] | http://blogometer.com/ | 504  
717 1428

Think New Orleans | http://thinknola.com/



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



Re: multi module eclipse:eclipse mewbie

2008-02-16 Thread Siarhei Dudzin
Looks like your parent project is just of pom type. In this case there wont
be an eclipse project generated since there is not artifact to deliver.
There are 2 things you can do:

1. Fire a feture request in JIRA so that simple eclipe project type is
created from pom type porject.
2. Create a simple project in eclipse manually. Since it wont change (just a
placeholder to hold other projects) you will be ok.

Eclipse starting from version 3.3 is able to deal nested projects so you
will be able to have parent and child projects in the same workspace easily.
If you have an older eclipse you can create a separate workspace (I call it
integration workspace) and work with the parent project from there.


Siarhei

On Feb 16, 2008 5:09 AM, deckrider <[EMAIL PROTECTED]> wrote:

> Sorry for the silly question but I'm trying to understand the best way
> to use Eclipse with Maven2 multi module projects.
>
> Here is my understanding:
>
> 1. Check out the project, but don't use Eclipse to check it out.
>
> 2. Run 'mvn elicpse:eclipse' from the parent.
>
> 3. Now start Eclipse and import the existing project.
>
> This results in all the children coming into Eclipse as separate
> modules. However the parent is not available.
>
> Is this expected?  Am I doing something non-standard?  How am I
> supposed to work on the parent project?
>
> Thanks in advance for your help and understanding.
>
> --
> ASCII ribbon campaign:
> ()  against HTML email
> /\  against Microsoft attachments
>Information:  http://www.expita.com/nomime.html
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>


RE: Maven ignores my archetype selection

2008-02-16 Thread Brian E. Fox
The new ones prompt you from the command line. Just pick the one you need from 
the prompts.

-Original Message-
From: Tom Cook [mailto:[EMAIL PROTECTED] 
Sent: Saturday, February 16, 2008 4:07 AM
To: Maven Users List
Subject: Re: Maven ignores my archetype selection

Thanks for the quick answer.  I don't particularly need old style commands,
and didn't really realise there were 'old-style' and 'new-style' commands, I
was just following the documentation - eg. Maven in 5
Minutes,from
which the first command in my post was taken.

So, given that I don't need old-style commands, what do new-style commands
look like?  Where can I find documentation on them?

Regards,
Tom

On Sat, Feb 16, 2008 at 6:03 PM, Brian E. Fox <[EMAIL PROTECTED]>
wrote:

> Use org.apache.maven.plugins:maven-archetype-plugin:1.0-alpha-7:create if
> you need the old style commands. The new version 2.0 has an issue with
> backwards compat and should be fixed shortly.
>
> -Original Message-
> From: Tom Cook [mailto:[EMAIL PROTECTED]
> Sent: Friday, February 15, 2008 9:42 PM
> To: users@maven.apache.org
> Subject: Maven ignores my archetype selection
>
> Hi all,
>
> I hate asking noob questions, but I have looked in the bug tracker, the
> FAQ,
> the list archive and the doco and can't see any mention of it, so here
> goes:
>
> I have downloaded maven 2.0.8 on my Ubuntu gutsy machine, unpacked it and
> moved it to /usr/local/apache-maven.  I have set up my environment as
> follows:
>
> >echo $M2
> /usr/local/apache-maven/bin
> >echo $M2_HOME
> /usr/local/apache-maven
> >echo $JAVA_HOME
> /usr/lib/jvm/java-1.5.0-sun
> >java -version
> java version "1.5.0_13"
> Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_13-b05)
> Java HotSpot(TM) Client VM (build 1.5.0_13-b05, mixed mode, sharing)
> >mvn -version
> /usr/lib/jvm/java-1.5.0-sun/bin/java -classpath
> /usr/local/apache-maven/boot/classworlds-1.1.jar -
> Dclassworlds.conf=/usr/local/apache-maven/bin/m2.conf -
> Dmaven.home=/usr/local/apache-maven org.codehaus.classworlds.Launcher
> "-version"
> Maven version: 2.0.8
> Java version: 1.5.0_13
> OS name: "linux" version: "2.6.22-14-generic" arch: "i386" Family: "unix"
>
> But when I try:
>
> >mvn archetype:create -DgroupId=com.my-package -DartifactId=my-app
> [INFO] Scanning for projects...
> [INFO] Searching repository for plugin with prefix: 'archetype'.
> [INFO]
> 
> [INFO] Building Maven Default Project
> [INFO]task-segment: [archetype:create] (aggregator-style)
> [INFO]
> 
> [INFO] Preparing archetype:create
> [INFO] No goals needed for project - skipping
> Downloading:
>
> http://repo1.maven.org/maven2/com/my-package/wagon-http-shared/1.0-beta-2/wagon-http-shared-1.0-beta-2.pom
> Downloading:
>
> http://repo1.maven.org/maven2/com/my-package/wagon-http-shared/1.0-beta-2/wagon-http-shared-1.0-beta-2.pom
> [INFO] Setting property: classpath.resource.loader.class => '
> org.codehaus.plexus.velocity.ContextClassLoaderResourceLoader'.
> [INFO] Setting property: velocimacro.messages.on => 'false'.
> [INFO] Setting property: resource.loader => 'classpath'.
> [INFO] Setting property: resource.manager.logwhenfound => 'false'.
> [INFO] [archetype:create]
> Choose archetype:
> 1: internal -> appfuse-basic-jsf (AppFuse archetype for creating a web
> application with Hibernate, Spring and JSF)
> 2: internal -> appfuse-basic-spring (AppFuse archetype for creating a web
> application with Hibernate, Spring and Spring MVC)
> 3: internal -> appfuse-basic-struts (AppFuse archetype for creating a web
> application with Hibernate, Spring and Struts 2)
> 4: internal -> appfuse-basic-tapestry (AppFuse archetype for creating a
> web
> application with Hibernate, Spring and Tapestry 4)
> 5: internal -> appfuse-core (AppFuse archetype for creating a jar
> application with Hibernate and Spring and XFire)
> 6: internal -> appfuse-modular-jsf (AppFuse archetype for creating a
> modular
> application with Hibernate, Spring and JSF)
> 7: internal -> appfuse-modular-spring (AppFuse archetype for creating a
> modular application with Hibernate, Spring and Spring MVC)
> 8: internal -> appfuse-modular-struts (AppFuse archetype for creating a
> modular application with Hibernate, Spring and Struts 2)
> 9: internal -> appfuse-modular-tapestry (AppFuse archetype for creating a
> modular application with Hibernate, Spring and Tapestry 4)
> 10: internal -> maven-archetype-j2ee-simple (A simple J2EE Java
> application)
> 11: internal -> maven-archetype-marmalade-mojo (A Maven plugin development
> project using marmalade)
> 12: internal -> maven-archetype-mojo (A Maven Java plugin development
> project)
> 13: internal -> maven-archetype-portlet (A simple portlet application)
> 14: internal -> maven-archetype-profiles ()
> 15: internal

Re: Not founding standart archetypes

2008-02-16 Thread author

THX i'll try it
-- 
View this message in context: 
http://www.nabble.com/Not-founding-standart-archetypes-tp15515118s177p15517745.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]



Re: Maven ignores my archetype selection

2008-02-16 Thread Tom Cook
Thanks for the quick answer.  I don't particularly need old style commands,
and didn't really realise there were 'old-style' and 'new-style' commands, I
was just following the documentation - eg. Maven in 5
Minutes,from
which the first command in my post was taken.

So, given that I don't need old-style commands, what do new-style commands
look like?  Where can I find documentation on them?

Regards,
Tom

On Sat, Feb 16, 2008 at 6:03 PM, Brian E. Fox <[EMAIL PROTECTED]>
wrote:

> Use org.apache.maven.plugins:maven-archetype-plugin:1.0-alpha-7:create if
> you need the old style commands. The new version 2.0 has an issue with
> backwards compat and should be fixed shortly.
>
> -Original Message-
> From: Tom Cook [mailto:[EMAIL PROTECTED]
> Sent: Friday, February 15, 2008 9:42 PM
> To: users@maven.apache.org
> Subject: Maven ignores my archetype selection
>
> Hi all,
>
> I hate asking noob questions, but I have looked in the bug tracker, the
> FAQ,
> the list archive and the doco and can't see any mention of it, so here
> goes:
>
> I have downloaded maven 2.0.8 on my Ubuntu gutsy machine, unpacked it and
> moved it to /usr/local/apache-maven.  I have set up my environment as
> follows:
>
> >echo $M2
> /usr/local/apache-maven/bin
> >echo $M2_HOME
> /usr/local/apache-maven
> >echo $JAVA_HOME
> /usr/lib/jvm/java-1.5.0-sun
> >java -version
> java version "1.5.0_13"
> Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_13-b05)
> Java HotSpot(TM) Client VM (build 1.5.0_13-b05, mixed mode, sharing)
> >mvn -version
> /usr/lib/jvm/java-1.5.0-sun/bin/java -classpath
> /usr/local/apache-maven/boot/classworlds-1.1.jar -
> Dclassworlds.conf=/usr/local/apache-maven/bin/m2.conf -
> Dmaven.home=/usr/local/apache-maven org.codehaus.classworlds.Launcher
> "-version"
> Maven version: 2.0.8
> Java version: 1.5.0_13
> OS name: "linux" version: "2.6.22-14-generic" arch: "i386" Family: "unix"
>
> But when I try:
>
> >mvn archetype:create -DgroupId=com.my-package -DartifactId=my-app
> [INFO] Scanning for projects...
> [INFO] Searching repository for plugin with prefix: 'archetype'.
> [INFO]
> 
> [INFO] Building Maven Default Project
> [INFO]task-segment: [archetype:create] (aggregator-style)
> [INFO]
> 
> [INFO] Preparing archetype:create
> [INFO] No goals needed for project - skipping
> Downloading:
>
> http://repo1.maven.org/maven2/com/my-package/wagon-http-shared/1.0-beta-2/wagon-http-shared-1.0-beta-2.pom
> Downloading:
>
> http://repo1.maven.org/maven2/com/my-package/wagon-http-shared/1.0-beta-2/wagon-http-shared-1.0-beta-2.pom
> [INFO] Setting property: classpath.resource.loader.class => '
> org.codehaus.plexus.velocity.ContextClassLoaderResourceLoader'.
> [INFO] Setting property: velocimacro.messages.on => 'false'.
> [INFO] Setting property: resource.loader => 'classpath'.
> [INFO] Setting property: resource.manager.logwhenfound => 'false'.
> [INFO] [archetype:create]
> Choose archetype:
> 1: internal -> appfuse-basic-jsf (AppFuse archetype for creating a web
> application with Hibernate, Spring and JSF)
> 2: internal -> appfuse-basic-spring (AppFuse archetype for creating a web
> application with Hibernate, Spring and Spring MVC)
> 3: internal -> appfuse-basic-struts (AppFuse archetype for creating a web
> application with Hibernate, Spring and Struts 2)
> 4: internal -> appfuse-basic-tapestry (AppFuse archetype for creating a
> web
> application with Hibernate, Spring and Tapestry 4)
> 5: internal -> appfuse-core (AppFuse archetype for creating a jar
> application with Hibernate and Spring and XFire)
> 6: internal -> appfuse-modular-jsf (AppFuse archetype for creating a
> modular
> application with Hibernate, Spring and JSF)
> 7: internal -> appfuse-modular-spring (AppFuse archetype for creating a
> modular application with Hibernate, Spring and Spring MVC)
> 8: internal -> appfuse-modular-struts (AppFuse archetype for creating a
> modular application with Hibernate, Spring and Struts 2)
> 9: internal -> appfuse-modular-tapestry (AppFuse archetype for creating a
> modular application with Hibernate, Spring and Tapestry 4)
> 10: internal -> maven-archetype-j2ee-simple (A simple J2EE Java
> application)
> 11: internal -> maven-archetype-marmalade-mojo (A Maven plugin development
> project using marmalade)
> 12: internal -> maven-archetype-mojo (A Maven Java plugin development
> project)
> 13: internal -> maven-archetype-portlet (A simple portlet application)
> 14: internal -> maven-archetype-profiles ()
> 15: internal -> maven-archetype-quickstart ()
> 16: internal -> maven-archetype-site-simple (A simple site generation
> project)
> 17: internal -> maven-archetype-site (A more complex site project)
> 18: internal -> maven-archetype-webapp (A simple Java web application)
> 19: internal -> 

Re: Is there an XDoclet Plugin which uses XJavadoc 1.5 (Generics) ?

2008-02-16 Thread Mac-Systems

Hello,

we already patched the XDoclet Plugin with the new XJavaDoc Plugin, 
Works for us.
I'd like to update the maven repository, so anyone can tell me who is 
responsible

for maven xdoclet plugin ?

regards,
jens


Hi,

We are also interested by using Xdoclet with JDK 1.5.

What I understood is we need a specific version of the xjavadoc library :
xjavadoc-1.5-050611.jar

An issue was opened in order to upload this library : MAVENUPLOAD-1399 (cf.
http://jira.codehaus.org/browse/MAVENUPLOAD-1399).
The status is Closed and the resolution Incomplete.
I am not sure to understand why. Perhaps Carlos can explain ?
But this library is unfortunately not available is the maven 2 repository.

An other issue is open in order to take into account this new library by the
maven xdoclet plugin : MOJO-665 (cf.
http://jira.codehaus.org/browse/MOJO-665).
The status is still open and is Unassigned.

I don't really know what to do except from upload it in my maven 2 proxy
repository.
But I think it's better if these issues can be resolved by the maven 2
community.

I don't know if a commiter can help for that.

Rémy

  



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



Re: Not founding standart archetypes

2008-02-16 Thread Stuart McCulloch
On 16/02/2008, author <[EMAIL PROTECTED]> wrote:
>
>
> Hi.
> I download maven 2.0.8 and type
>
> mvn archetype:create –DgroupId=com.my.soft –DartifactId=WebSample
> –DarchetypeArtifactId=maven–archetype–webapp
>
> but it show me that:
>
> [INFO] Building Maven Default Project
> [INFO]task-segment: [archetype:create] (aggregator-style)
> [INFO]
> 
> [INFO] Preparing archetype:create
> [INFO] No goals needed for project - skipping
> Downloading:
> http://repo1.maven.org/maven2/org/apache/maven/archetype/archetype-
> common/2.0-alpha-1/archetype-common-2.0-alpha-1.pom
> 15K downloaded
> Downloading:
> http://repo1.maven.org/maven2/org/apache/maven/maven-core/2.0.8/mav
> en-core-2.0.8.pom
> 6K downloaded
> Downloading:
> http://repo1.maven.org/maven2/org/apache/maven/maven/2.0.8/maven-2.
> 0.8.pom
> 11K downloaded
> Downloading:
>
> .
>
>
> http://repo1.maven.org/maven2/org/apache/maven/shared/maven-invoker
> /2.0.6/maven-invoker-2.0.6.jar
> 24K downloaded
> [INFO] Setting property: classpath.resource.loader.class =>
> 'org.codehaus.plexus
> .velocity.ContextClassLoaderResourceLoader'.
> [INFO] Setting property: velocimacro.messages.on => 'false'.
> [INFO] Setting property: resource.loader => 'classpath'.
> [INFO] Setting property: resource.manager.logwhenfound => 'false'.
> [INFO] [archetype:create]
> Choose archetype:
> 1: internal -> appfuse-basic-jsf (AppFuse archetype for creating a web
> applicati
> on with Hibernate, Spring and JSF)
> 2: internal -> appfuse-basic-spring (AppFuse archetype for creating a web
> applic
> ation with Hibernate, Spring and Spring MVC)
> 3: internal -> appfuse-basic-struts (AppFuse archetype for creating a web
> applic
>
> ...
>
> 36:
>
> WHY?


you're picking up the new archetype plugin (2.0-alpha1) which unfortunately
doesn't notice you've already selected an archetype on the command line,
this should be fixed soon

in the meantime you can get the old archetype plugin with:

   org.apache.maven.plugins:maven-archetype-plugin:1.0-alpha-7:create

HTH

THX!!
>
> --
> View this message in context:
> http://www.nabble.com/Not-founding-standart-archetypes-tp15515118s177p15515118.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]
>
>


-- 
Cheers, Stuart