Re: release:prepare errors

2006-03-09 Thread Emmanuel Venisse
tagBase must be a real svn url and not a maven-scm url, it's the url to access to tags directory in your svn If you declare it in configuration of release plugin in your pom, you won't need to declare it on command line you don't need to declare the connection url to use, release plugin will

[ANN] Maven2 AspectJ plugin

2006-03-09 Thread Kaare Nilsen
The Mojo team is pleased to announce the AspectJ Plugin 1.0-beta-1 release! htp://mojo.codehaus.org/aspectj-maven-plugin/ This plugin allows user to: - Compile and weave aspectJ aspects, and java classes - Create a ajdoc report. - Create a aop.xml for Load Time Weaving based on the proj

RE: [m2] project setup expertise needed

2006-03-09 Thread andreas.ebbert-karroum
Hi, Thanks for your suggestions. I'll try that - and possibly come back with more detailed questions later :-) Kind Regards, _ ___ _ //\ndreas.[|-bbert-[]/arroum(a)[|\|okia.com `-` Andreas Ebbert-Karroum    Software Design Engineer - Nokia Networks

Re: Maven2 HibernatePlugin

2006-03-09 Thread Chris Maki
Hi Marco (and Ian) The hibernate3 plugin in the Mojo Sandbox requires you to build it before using it. If this is okay for your situation, great. If it is not, here is how I got the hibernatetool hbm2ddl to work: org.apache.maven.plugins maven-antrun-plugin

Re: [m2] install:install-file not working?

2006-03-09 Thread Barrie Treloar
Brett's is the correct answer, the command line looks like a cut-n-paste error as the file locations looks correct for the pom details given. On 3/10/06, Prasad Kashyap <[EMAIL PROTECTED]> wrote: > artifactId defined in the command line and the one used in the pom are > different. > > Cheers > Pra

Open new window in an xdoc href...how?

2006-03-09 Thread rick rineholt
Hello Looking for a way to have a link in the body of the document to open a URL in a new browser window. Typically this is done with a target attribute in the anchor but it seems that site generation process removes this attribute :-( __ Do You Y

Re: Maven2, antrun and script task

2006-03-09 Thread Carlos Sanchez
http://maven.apache.org/plugins/maven-antrun-plugin/classpaths.html "Using optional ant tasks" On 3/9/06, Laurie Harper <[EMAIL PROTECTED]> wrote: > I'm trying to integrate a third-party, ant-based build into a Maven2 > build using the antrun plugin. The problem is the ant build uses > optional ta

Re: [m2] install:install-file not working?

2006-03-09 Thread Prasad Kashyap
artifactId defined in the command line and the one used in the pom are different. Cheers Prasad On 3/9/06, Craig McDaniel <[EMAIL PROTECTED]> wrote: > Since swt 3,1,2 does not exist in the maven 2 repo right now, I tried > to install it locally with the following command: > > mvn install:install-

Re: [m2] install:install-file not working?

2006-03-09 Thread Brett Porter
you said "runtime", but it needs it to compile. Try removing the scope. On 3/10/06, Craig McDaniel <[EMAIL PROTECTED]> wrote: > Since swt 3,1,2 does not exist in the maven 2 repo right now, I tried > to install it locally with the following command: > > mvn install:install-file -DgroupId=swt -Dart

Maven2, antrun and script task

2006-03-09 Thread Laurie Harper
I'm trying to integrate a third-party, ant-based build into a Maven2 build using the antrun plugin. The problem is the ant build uses optional tasks, and I can't figure out how to get that to work. The ant build as shipped copies the required dependencies (jar files) for the optional tasks to

[m2] install:install-file not working?

2006-03-09 Thread Craig McDaniel
Since swt 3,1,2 does not exist in the maven 2 repo right now, I tried to install it locally with the following command: mvn install:install-file -DgroupId=swt -DartifactId=t-osx -Dversion=3.1.2 -Dpackaging=jar -Dfile=swt.jar This succeeds in placing the jar file in ~/.m2/repository/swt/swt-osx/3.

Re: release:prepare errors

2006-03-09 Thread Barrie Treloar
On 3/10/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > The pom in the scm, I then check out the project then, I can run maven from > the work directory. > > Then the release:prepare replaces the current pom with the tag pom that is > generated. > > Can someone help with this problem? > > Thanks

Re: release:prepare errors

2006-03-09 Thread thenew05
The pom in the scm, I then check out the project then, I can run maven from the work directory. Then the release:prepare replaces the current pom with the tag pom that is generated. Can someone help with this problem? Thanks, On 3/9/06, Alexandre Poitras <[EMAIL PROTECTED]> wrote: > > It is, p

Passing maven variables as system properties

2006-03-09 Thread Simon Kitching
Hi, I'm trying to store some maven vars into system properties so I can access them from unit test code: org.apache.maven.plugins maven-surefire-plugin core-static ${project.build.outputDirectory}/

Re: How can I use maven.jar.compress with maven2

2006-03-09 Thread Edwin Punzalan
You need to pass a configuration for the archiver in your pom.xml like so: ... org.apache.maven.plugins maven-jar-plugin false true ... I don't think its available in CLI, but I maybe wrong.

Re: How do I include my ejb3 and par files in ear for Maven2

2006-03-09 Thread John Tolentino
Try out first the suggested solution that you mentioned (adding the ejb3 and par files into your dependencies) then extract the ear file. You are most likely to see that those dependencies are already packaged in the ear. Maven 2 will exclude your dependency from the package only if you defined

Re: Maven Report Error

2006-03-09 Thread Alexandre Poitras
There is a problem with one of your dependency. Can you post your pom please? On 09 Mar 2006 10:41:03 UT, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > Dear Maveners, > > I am trying to generate a website for my J2EE project using Maven, but i am > having the below error each time when issuing m

Re: release:prepare errors

2006-03-09 Thread Alexandre Poitras
It is, poms should always be stored in your scm repository instead of any proprietary IDE projects. On 3/9/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > I believe I am overwriting the pom tagBase with the command line for the > tagBase! > > On 3/9/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wro

Re: Define sequence of execution of Maven2 Commands

2006-03-09 Thread Henry S. Isidro
Nidhi Tuli wrote: I want to define a sequence of execution of maven commands using maven2. I don't want to follow the regular life cycle. I am building ejb3 project and would like the execution should be in compile,jar,ejb3,par,ear sequence. And when I do Mvn ear:ear -- It should first compil

RE: How do I include my ejb3 and par files in ear for Maven2

2006-03-09 Thread Nidhi Tuli
My end goal is to generate ear file using Maven2 for deploying EJB3 in JBoss. For this purpose I wrote some ejb3 code, which I need to 1. compile 2. generate jar 3. generate ejb3 4. generate par 5. generate ear and then I will deploy ear. The ear should contain the ejb3 and par which was gener

Re: how to point 'mvn archetype:create' at internal repository?

2006-03-09 Thread John Tolentino
Hi Rob, This might help: http://maven.apache.org/guides/introduction/introduction-to-repositories.html If you've already done that, then just include your internal repository in your settings.xml repositories section and use the archetype. - John Rob Dickens wrote: Dear list, Using the

Re: [m2.0.2]maven-clean-plugin' does not exist or no valid version could be found

2006-03-09 Thread Allan Ramirez
Hi, I dont think the will help you for this. Try this http://docs.codehaus.org/display/MAVENUSER/FAQs-1 and look for the question "How do I resolve the " < plugin name > does not exist or no valid version " error?" By the way, the faq page seems a bit messy so dont get confuse. :) Cheers, -al

Re: How do I include my ejb3 and par files in ear.

2006-03-09 Thread John Tolentino
By the way, please include [m1] or [m2] in your subject for faster response. Here's the M2 project descriptor for your reference, again, I'm assuming this is an M2 question: http://maven.apache.org/maven-model/maven.html I've just noticed that is not part of the plugin section. It's not clea

Re: [m2] Does MINSTALL-12 fix MINSTALL-14 ?

2006-03-09 Thread Allan Ramirez
Yes, MINSTALL-14 is a duplicate of MINSTALL-12. I saw that it was fixed and commited yesterday, you should build the plugin from source to use it. -allan Adrian Herscu wrote: Hi all, It seems like http://jira.codehaus.org/browse/MINSTALL-12 fixesu http://jira.codehaus.org/browse/MINSTALL-14

Re: How do I include my ejb3 and par files in ear.

2006-03-09 Thread John Tolentino
Hi Nidhi, Is this a maven 1 or maven 2 build? If it's maven 2, it's causing an error because you can only declare one type. John Nidhi Tuli wrote: EAR plugin only supports " jar, war, ejb, rar, sar" types. If I try to include ejb3 and par file for ejb3 deplyment. It throws exception. Code:

Re: [m2][ibiblio-upload-request] ant-testutil-1.6.5.jar

2006-03-09 Thread Carlos Sanchez
see below On 3/9/06, Adrian Herscu <[EMAIL PROTECTED]> wrote: > Carlos, Wayne, please see my comments below. > Adrian. > > Carlos Sanchez wrote: > > Apache projects are responsible of putting their stuff in the apache > > maven repo, which is copied to ibiblio > > ant-testutil.jar is even not avai

Re: [M2] Passing properties to ant script

2006-03-09 Thread Stephen Duncan
I think this covers what you need: http://maven.apache.org/plugins/maven-antrun-plugin/classpaths.html -Stephen On 3/9/06, Siegmann Daniel, NY <[EMAIL PROTECTED]> wrote: > None of the classpath elements mentioned in the maven-antrun-plugin docs > work! I echoed them all, none are set. :( > > Ele

Re: [m2][ibiblio-upload-request] ant-testutil-1.6.5.jar

2006-03-09 Thread Adrian Herscu
Carlos, Wayne, please see my comments below. Adrian. Carlos Sanchez wrote: > Apache projects are responsible of putting their stuff in the apache > maven repo, which is copied to ibiblio ant-testutil.jar is even not available as a standalone binary download -- you have to download the ANT sources

How do I include my ejb3 and par files in ear.

2006-03-09 Thread Nidhi Tuli
EAR plugin only supports " jar, war, ejb, rar, sar" types. If I try to include ejb3 and par file for ejb3 deplyment. It throws exception. Code: org.apache.maven.plugins maven-ear-plugin ejb3 par true

Define sequence of execution of Maven2 Commands

2006-03-09 Thread Nidhi Tuli
I want to define a sequence of execution of maven commands using maven2. I don't want to follow the regular life cycle. I am building ejb3 project and would like the execution should be in compile,jar,ejb3,par,ear sequence. And when I do Mvn ear:ear -- It should first compile then jar it, then ej

[m202] Error trying to deploy with scp

2006-03-09 Thread Ray Ward
I'm trying to test deploying with scp and get an error about permissions. (The error is at the end of this email.) I read the mini-guide docs on deploying http://maven.apache.org/guides/mini/guide-deploy-ssh-external.html and Security and Deployment Settings http://maven.apache.org/guides/mini/gui

how to point 'mvn archetype:create' at internal repository?

2006-03-09 Thread Rob Dickens
Dear list, Using the instructions on the Guide to Creating Archetypes webpage, I have created an archetype, and deployed it to my internal repository (file:///usr/local/mvnrep say). Please could someone let me in on how to now access it. Many thanks, Rob -

Re: [m2] project setup expertise needed

2006-03-09 Thread Carlos Sanchez
Then: 1. use assembly plugin http://maven.apache.org/plugins/maven-assembly-plugin to pack everything in a zip, it'll be deployed 2. add a dependency on that project using zip inside 3. I don't know why you want to commit if nothing has changed. Take a look to the antrun plugin http://maven.apache

[ANN] Maven EAR Plugin 1.8 for Maven 1.x released

2006-03-09 Thread Stephane Nicoll
The maven team is pleased to announce the Maven EAR Plugin 1.8 release! http://maven.apache.org/maven-1.x/plugins/ear/ Changes in this version include: Fixed bugs: o Added support of JbossNet archive in application.xml generation. Issue: MPEAR-33. Changes: o Update dependencies to match

RE: [m2] project setup expertise needed

2006-03-09 Thread andreas.ebbert-karroum
Hi Carlos, All those commits ... Sorry that I cannot express what the contraints of the tooling are, and what people want to get out of the project in the end. Maybe I'm thinking too complicated... I need to have three different packages in the end. One for java, one for xsd, one for the wsdl.

rpm-plugin mapping file rename

2006-03-09 Thread Xavier Toth
Can the mapping element be used to rename a file being installed? Xavier

Re: [m2] project setup expertise needed

2006-03-09 Thread Carlos Sanchez
I don't really know what are you trying to do with all those commits, but think about this: model -> just that model whatever it is java -> depends on model, generates and compiles java xsd -> depends on model, generates xsd wsdl -> depends on model, generates wsdl distribution -> packs everythi

Re: [m2][ibiblio-upload-request] ant-testutil-1.6.5.jar

2006-03-09 Thread Carlos Sanchez
Apache projects are responsible of putting their stuff in the apache maven repo, which is copied to ibiblio On 3/9/06, Wayne Fay <[EMAIL PROTECTED]> wrote: > That doesn't matter! Anyone can submit a Maven bundle for uploading > into Maven repo. > > Personally I've submitted a few artifacts followi

RE: [m2] project setup expertise needed

2006-03-09 Thread andreas.ebbert-karroum
Hi Caslos, Thanks for your feedback, my comments inline below: >-Original Message- >From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf >Of ext Carlos Sanchez >When you say " a custom ant-based plugin " you mean an ant >script used from the antrun plugin? No, I created a real

RE: [M2] Passing properties to ant script

2006-03-09 Thread Siegmann Daniel, NY
None of the classpath elements mentioned in the maven-antrun-plugin docs work! I echoed them all, none are set. :( Elements of the classpath are in the project.compileClasspathElements, project.testClasspathElements, and project.runtimeClasspathElements properties. However, these are in array form

Re: [m2][ibiblio-upload-request] ant-testutil-1.6.5.jar

2006-03-09 Thread Wayne Fay
That doesn't matter! Anyone can submit a Maven bundle for uploading into Maven repo. Personally I've submitted a few artifacts following the instructions on that page. Just put "NOT A DEVELOPER" in the JIRA task, per the instructions... Wayne On 3/9/06, Adrian Herscu <[EMAIL PROTECTED]> wrote:

Re: RE : Deploying artifact with wagon scm [was Site deploy in ASF help one project to another]

2006-03-09 Thread Carlos Sanchez
It's still in the sandbox http://svn.apache.org/viewcvs.cgi/maven/sandbox On 3/9/06, Olivier Lamy <[EMAIL PROTECTED]> wrote: > Ok I can expose my use case. > Do I have trouble with interet access (proxy). > But I don't see wagon-scm in > http://svn.apache.org/viewcvs.cgi/maven/wagon/trunk/wagon-p

Re: [m2][ibiblio-upload-request] ant-testutil-1.6.5.jar

2006-03-09 Thread Adrian Herscu
But I am not one of the ANT developers... I will ask for help on the ANT user list. Wayne Fay wrote: > Realistically, if you want this to end up in Maven repo, you will need > to follow the directions on the website to make a Maven bundle etc and > upload to Jira under project MavenUpload: > http:

RE: http://jira.codehaus.org/browse/MNG-2006

2006-03-09 Thread Veerman, Christiaan
I noticed that http://jira.codehaus.org/browse/CONTINUUM-258 issue was resolved in a patch for 1.0-alpha-4. How do I incorporate that patch into continuum-1.0.3-SNAPSHOT? Christiaan -Original Message- From: Emmanuel Venisse [mailto:[EMAIL PROTECTED] Sent: Thursday, March 09, 2006 8:51

RE : Deploying artifact with wagon scm [was Site deploy in ASF help one project to another]

2006-03-09 Thread Olivier Lamy
Ok I can expose my use case. Do I have trouble with interet access (proxy). But I don't see wagon-scm in http://svn.apache.org/viewcvs.cgi/maven/wagon/trunk/wagon-providers/ ?? - Olivier -Message d'origine- De : [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] De la part de Carlos Sanchez Envo

Re: Deploying artifact with wagon scm [was Site deploy in ASF help one project to another]

2006-03-09 Thread Carlos Sanchez
AFAIK you can't access the plugins configuration Take also into account that wagon-scm is very experimental yet, if you get it working it'd be great if you could provide example and docs for http://maven.apache.org/wagon/ref/1.0-alpha-7-SNAPSHOT/wagon-providers/wagon-scm/usage.html Thanks On 3/9

Deploying artifact with wagon scm [was Site deploy in ASF help one project to another]

2006-03-09 Thread Olivier Lamy
OK. Question : with the tagBase and tag specified with release plugin ? My use case is too defined a profile (distribution) with distributionManagement setted to svn. But I need to add/checkin to the tagBase and the tag setted with the release plugin. I need to specify something like : scm:svn:htt

Re: SPAM: Problems with maven-buildnumber-plugin

2006-03-09 Thread Mick Knutson
No. --- Thank You Mick Knutson Sr. Java/J2EE Consultant BASE logic, inc. (415) 648-1804 (S.F., CA) http://www.BASELogic.com Washington Mutual (WAMU) (Emeryville, California) --- From: "Wayne Fay" <[EMAIL PROTECTED]> Reply-To: "Maven Users List" To: "Maven Users List" Subject: Re: SPAM: P

Re: Maven2 HibernatePlugin

2006-03-09 Thread ian . d . stewart
Marco, There are a number of resources I've found useful in tracking down Maven plug-ins: Available Maven Plugins (http://maven.apache.org/plugins/index.html) Maven Plug-in Matrix (http://docs.codehaus.org/display/MAVEN/Maven+Plugin+Matrix) Mojo Maven2 Plugins Project (http://mojo.codehaus.org) M

Re: RE : Site deploy in ASF help one project to another

2006-03-09 Thread Carlos Sanchez
that's the next step. It should work already but haven't tried On 3/9/06, Olivier Lamy <[EMAIL PROTECTED]> wrote: > Great feature. > Deploying artifact with wagon-scm will be supported too ? > > - Olivier > > -Message d'origine- > De : rick rineholt [mailto:[EMAIL PROTECTED] > Envoyé : jeu

Re: Site deploy in ASF help one project to another

2006-03-09 Thread Carlos Sanchez
what? deploying to svn or to minoutaur ssh server? On 3/9/06, rick rineholt <[EMAIL PROTECTED]> wrote: > Thanks a bunch, working nicely for us! :-) > > Carlos Sanchez wrote: > > Check site inside distributionManagement here > > > http://svn.apache.org/viewcvs.cgi/maven/components/trunk/pom.xml?re

RE : Site deploy in ASF help one project to another

2006-03-09 Thread Olivier Lamy
Great feature. Deploying artifact with wagon-scm will be supported too ? - Olivier -Message d'origine- De : rick rineholt [mailto:[EMAIL PROTECTED] Envoyé : jeudi 9 mars 2006 18:31 À : Maven Users List Objet : Re: Site deploy in ASF help one project to another Thanks a bunch, working

Re: SPAM: Problems with maven-buildnumber-plugin

2006-03-09 Thread Wayne Fay
What, you don't have a threading mail reader?? ;-) Wayne On 3/9/06, Mick Knutson <[EMAIL PROTECTED]> wrote: > Always reply-to with history please. > > --- > Thank You > Mick Knutson > > Sr. Java/J2EE Consultant > BASE logic, inc. > (415) 648-1804 (S.F., CA) > http://www.BASELogic.com > >

Re: release:prepare errors

2006-03-09 Thread thenew05
I believe I am overwriting the pom tagBase with the command line for the tagBase! On 3/9/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > I can not get the *releases:prepare* command to work. > I am using maven 2.0.2. Subversion 1.2.4. > Also, it seems that the release:prepare is checkin the

Re: SPAM: Problems with maven-buildnumber-plugin

2006-03-09 Thread Mick Knutson
Always reply-to with history please. --- Thank You Mick Knutson Sr. Java/J2EE Consultant BASE logic, inc. (415) 648-1804 (S.F., CA) http://www.BASELogic.com Washington Mutual (WAMU) (Emeryville, California) --- From: Max <[EMAIL PROTECTED]> Reply-To: "Maven Users List" To: users@m

Re: SPAM: Problems with maven-buildnumber-plugin

2006-03-09 Thread Max
Thanks Emmanuel, It works alright now! - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: release:prepare errors

2006-03-09 Thread Yann Le Du
I believe should be svn://css-paps/tmpSetup/projectName/tags (without scm stuff) Anyway, in your case you wouldn''t need to set it, since default is ../tags On 3/9/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > I can not get the *releases:prepare* command to work. > I am using maven 2.0.2.

[ANN] JAVAWUG BOF XVI / Friday 3rd March 2006 @ 19:00 / Oracle Ci ty of London

2006-03-09 Thread Pilgrim, Peter
Dear All I would like to formally announce that JAVAWUG (Java Web User Group) is holding the sixteenth Birds-of-Feather (Meet up XVI) at the Oracle City of London offices on Friday, 17th March 2006. The meeting will take place in a room with Audio/Visual facilities between 7-9:30 pm. There will

Re: how to use my own jar as dependencies

2006-03-09 Thread Ashish Srivastava
Thanks Tom. Where do I need to create the library-version.pom file? If say I have a a.jar file in "lib/" where to put the following in? 4.0.0 GROUIDYOUDEFINE ARTIFACTIDYOUDEFINE YOUVERSION Thanks, -Ashish --- Tom Joad <[EMAIL PROTECTED]> wrote: > You can install your jar in y

Re: project setup expertise needed

2006-03-09 Thread Carlos Sanchez
When you say " a custom ant-based plugin " you mean an ant script used from the antrun plugin? Anyway if instead of generating them to target/generated, which is usually used for generated java sources (not resources), you generate them to target/classes, they will end bundled in your jar. Hope i

Maven2 HibernatePlugin

2006-03-09 Thread Marco Mistroni
hello, i am looking for a Maven Hibernate Plugin for Maven2 which uses Hibernate3 for generating sql table scripts out of Hibernate files.. does it exist? if so, where ic an download it? thanks and regards marco

Re: Site deploy in ASF help one project to another

2006-03-09 Thread rick rineholt
Thanks a bunch, working nicely for us! :-) Carlos Sanchez wrote: > Check site inside distributionManagement here > http://svn.apache.org/viewcvs.cgi/maven/components/trunk/pom.xml?rev=382904&view=markup > That's how we publish it > > There's an option to deploy to Subversion in development, it's

Re: [m2] maven-antrun-plugin classpath related behavior changed

2006-03-09 Thread Xavier Toth
looks like we need to use maven.compile.classpath instead of maven.dependency.classpath On 3/9/06, Xavier Toth <[EMAIL PROTECTED]> wrote: > > Not sure how stack trace will help. I'm thinking that the > maven.dependency.classpath is messed up somehow. I added > > org.apache.maven.p

Re: [m2] maven-antrun-plugin classpath related behavior changed

2006-03-09 Thread Xavier Toth
Not sure how stack trace will help. I'm thinking that the maven.dependency.classpath is messed up somehow. I added org.apache.maven.plugins maven-antrun-plugin 1.1 dump maven.dependency.classpath generate-sources

release:prepare errors

2006-03-09 Thread thenew05
I can not get the *releases:prepare* command to work. I am using maven 2.0.2. Subversion 1.2.4. Also, it seems that the release:prepare is checkin the generated pom.xml to my trunk. Is that suppose to happen? I can do a command line for the svn copy. mvn -e release:prepare - Dproject.scm.develop

Re: maven.apache.org extremely slow

2006-03-09 Thread Wayne Fay
Not sure what's going on for you... But put 127.0.0.1 www.google-analytics.com in your hosts file to avoid the problem entirely. ;-) Wayne On 3/9/06, Christian Mouttet <[EMAIL PROTECTED]> wrote: > Hi all, > > the requests to maven.apache.org is *very* slow and my browser shows me > 'waiting for

RE: [m2] maven-antrun-plugin classpath related behavior changed

2006-03-09 Thread Mayorgaadame, Alex
Xavier, I've seen something similar just yesterday. Can you share your stack traces? mvn goal -X Also which version of ant is maven using, mine was 1.6.5 and fails like: Embedded error: The following error occurred while executing this line: /home/am74839/sree/esf_samples_build.xml:162: Unable

maven.apache.org extremely slow

2006-03-09 Thread Christian Mouttet
Hi all, the requests to maven.apache.org is *very* slow and my browser shows me 'waiting for www.google-analytics.com' in its status bar. Any ideas what's going on? Regards -chris ** Diese E-Mail wurde auf Viren ueberprueft

[m2] maven-antrun-plugin classpath related behavior changed

2006-03-09 Thread Xavier Toth
maven-antrun-plugin executions that had been working are failing with classpath related issues (classnotfound). I'm thinking maybe I've picked up a newer version of the plugin and it's behavior is different. Is anyone else experiencing these types of problems? Xavier

Re: [m2][ibiblio-upload-request] ant-testutil-1.6.5.jar

2006-03-09 Thread Wayne Fay
Realistically, if you want this to end up in Maven repo, you will need to follow the directions on the website to make a Maven bundle etc and upload to Jira under project MavenUpload: http://maven.apache.org/guides/mini/guide-ibiblio-upload.html If you don't follow those directions, then you're ju

Re: Getting a Failure Stacktrace from Surefire

2006-03-09 Thread ian . d . stewart
Brett, In looking through the existing entries in JIRA for the maven-surefire-plugin[1], I ran across MSUREFIRE-30 (add support for printSummary)[2]. I have two questions on this issue: 1) Will printSummary indicate which individual tests failed, or just that there were failures in a test class?

Re: [m2.0.2]maven-clean-plugin' does not exist or no valid version could be found

2006-03-09 Thread Xavier Toth
It would be nice to be able to debug this but I don't understand the output of -X can anyone help with this? [DEBUG] maven-clean-plugin: using locally installed snapshot [DEBUG] Artifact not found - using stub model: Unable to determine the latest version org.apache.maven.plugins:maven-clean-plu

[m2.0.2]maven-clean-plugin' does not exist or no valid version could be found

2006-03-09 Thread Xavier Toth
I updated to Maven 2.0.2 and now my build fails because it can't find a version of the clean plugin it likes. I've looked at my repository and I have 2.0 and 2.1 versions of the plugin. Any ideas on how to resolve this? I tried putting the following in my top level build

[M2] repo access via https and clientCert

2006-03-09 Thread Jens Riboe
How do I configure Maven to download dependencies from a repository only accessible via HTTPS with client certificates? Thanks in advance, /Jens - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail

Re: m2:Locating testdata

2006-03-09 Thread Sidart Kurias
As an update I noticed that if you put a value under targetPath, it creates a directory with that value under testOutputDirectory specified in the build tag. So I removed the targetPath information, since maven put the files in the right place. I still cannot find the files. Sid --- Sidart Kurias

m2:Locating testdata

2006-03-09 Thread Sidart Kurias
Hi I am using Jtestcase to define testdata in an xml file. Jtestcase will try to find the xml defining the data either by using the file name, or if that fails using the classpath. Currently my tests use the classpath to locate the xml files. These xmls reside under src/test/resources. How do I

[m2] Does MINSTALL-12 fix MINSTALL-14 ?

2006-03-09 Thread Adrian Herscu
Hi all, It seems like http://jira.codehaus.org/browse/MINSTALL-12 fixes http://jira.codehaus.org/browse/MINSTALL-14 -- is it true? Is there an fixed version of the maven-install-plugin? Thanks, Adrian. - To unsubscribe, e-mail

RE: http://jira.codehaus.org/browse/MNG-2006

2006-03-09 Thread Veerman, Christiaan
The subject is the defect resolution; that I would like to obtain. I assumed that retrieving the 'Environment' in JIRA would provide the solution. Maven 2.0.2 Continuum 1.0.2 with maven-scm-*-1.0-beta-3-20060115.041342-*.jar Regardless, I appreciate your rapid resolution. Thanks again, Christ

[m2][ibiblio-upload-request] ant-testutil-1.6.5.jar

2006-03-09 Thread Adrian Herscu
Hi all, Can someone upload the ant-testutil.jar to IBiblio? This jar is not distributed as part of the ANT binary distribution. I have built it today from ANT 1.6.5 sources (and it works now from my local repository). Attached the ant-testutil-1.6.5.jar and its maven-metadata-local.xml as it shows

Re: [m2] antrun plugin - Embedded error: Unable to find a javac compiler;

2006-03-09 Thread Thorsten Heit
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Bob Arnott schrieb: > Smashing, it compiles my generation tool now. It seems to be a bit of a > hack > though... Anyway of stopping it looking for the dependency in the > central repo > everytime...? Should be possible if you put the following in your

How can I use maven.jar.compress with maven2

2006-03-09 Thread Venkatagopalaraju
Dear Maven users, I am using Maven2.0.2. According to my requirement, I need to use maven.jar.compress option with maven2. I tried with command line properties as like -Dmaven.jar.compress=false. But it is not working. How I am able to use this property with maven 2. Could anyone help me o

Re: [m2] antrun plugin - Embedded error: Unable to find a javac compiler;

2006-03-09 Thread Bob Arnott
Thorsten Heit wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi, Embedded error: Unable to find a javac compiler; com.sun.tools.javac.Main is not on the classpath. Perhaps JAVA_HOME does not point to the JDK I got a similar error recently when I wanted to call Ant's RMIC task. I solved

Re: [m2] maven scm api and cvs

2006-03-09 Thread Emmanuel Venisse
maven-scm look at and store password in .cvspass, but you must run cvs login for store password in windows registry because cvsnt use it and we can't access to it. In a future version of cvs scm provider, you'll can use a pure java provider so it will use only .cvspass and not cvsnt command lin

Maven Report Error

2006-03-09 Thread adela
Dear Maveners, I am trying to generate a website for my J2EE project using Maven, but i am having the below error each time when issuing mvn site command, Any idea why i am having this error? Thanks in advance Adel INFO] Generate "Maven Surefire Report" report. INFO] Generate "Checkstyle" rep

[m2] maven scm api and cvs

2006-03-09 Thread Thomas Will
Hi, I use the maven scm api, and try to connect to cvs. I've got cvsnt installed. Is it still possible to use a .cvspass file for the stored password? In maven1 there was a changelog goal create-cvspass, which I didn't find in maven2. Is there another alternative in maven2? Thanks, Tom.

Re: [m2] antrun plugin - Embedded error: Unable to find a javac compiler;

2006-03-09 Thread Thorsten Heit
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi, > Embedded error: Unable to find a javac compiler; > com.sun.tools.javac.Main is not on the classpath. > Perhaps JAVA_HOME does not point to the JDK I got a similar error recently when I wanted to call Ant's RMIC task. I solved it by adding a dep

[m2] antrun plugin - Embedded error: Unable to find a javac compiler;

2006-03-09 Thread Bob Arnott
I'm currently trying to migrate an ant based build to maven and need to generate some source code. We've got a tool that generates the code from a load of dtd/xml type files and that needs to be compiled first, before it's run to generate the source. I've got the following in my pom - org.apa

project setup expertise needed

2006-03-09 Thread andreas.ebbert-karroum
Hi, we're in the process of setting up our development environment with maven2 and I could need some expert advises and best practices. I already read a lot of the available documentation, still I have a fuzzy feeling, how to do it. The issue is that we are using a tool to generate three "pro

Re: Nag: Installing non-standard artifacts

2006-03-09 Thread Simon Kitching
On Thu, 2006-03-09 at 09:49 +0100, Jochen Wiedmann wrote: > [I posted this question a while ago without replies, so I try to repost.] > > Hi, > > I have a multiproject. One of the subprojects generates several > non-standard artifacts: Zip, files, tar.gz files, and the like. > > Another subproje

Re: Nag: Installing non-standard artifacts

2006-03-09 Thread Piéroni Raphaël
Maybe you need the help of someone more accurate on these things than me ;) 2006/3/9, Jochen Wiedmann <[EMAIL PROTECTED]>: > > Hi, Raphaël, > > first of all, thanks for your reply. > > On 3/9/06, Piéroni Raphaël <[EMAIL PROTECTED]> wrote: > > > First use assembly plugin to generate the zip tgz fil

Re: [m2] ant plugin mojo refering to maven ProjectHelper

2006-03-09 Thread Martin van der Plas
Hi John, Thanks for your reply. I figured out that the actual reference is injected by org.codehaus.plexus.component.factory.ant.AntScriptInvoker into the ant project with references.put(rd.getRole() + "_" + rd.getRoleHint(), rv); In my case getRoleHint returns null, so the ant project re

Re: Nag: Installing non-standard artifacts

2006-03-09 Thread Jochen Wiedmann
Hi, Raphaël, first of all, thanks for your reply. On 3/9/06, Piéroni Raphaël <[EMAIL PROTECTED]> wrote: > First use assembly plugin to generate the zip tgz files _and_ declare them > as associated artifacts (with classifier) > (sorry can't remember how) I have read about the classifier stuff. I

Ant Target

2006-03-09 Thread chetan mehrotra
Is there any way in maven to explicitly invoke the ant plugin target instead of tieing it to any lifecycle phase. Just like idea:idea if we execute our ant target. I tried to figure it out but was not able to find any way to do that -- Chetan Mehrotra

Re: Nag: Installing non-standard artifacts

2006-03-09 Thread Piéroni Raphaël
First use assembly plugin to generate the zip tgz files _and_ declare them as associated artifacts (with classifier) (sorry can't remember how) Second refer to the classifiered dependency in the pom of the war project 2006/3/9, Jochen Wiedmann <[EMAIL PROTECTED]>: > > [I posted this question a wh

Nag: Installing non-standard artifacts

2006-03-09 Thread Jochen Wiedmann
[I posted this question a while ago without replies, so I try to repost.] Hi, I have a multiproject. One of the subprojects generates several non-standard artifacts: Zip, files, tar.gz files, and the like. Another subproject is generating a war file. The generated war file should contain the non

Re: SPAM: Problems with maven-buildnumber-plugin

2006-03-09 Thread Emmanuel Venisse
Sorry, it's my fault. I removed it in maven-scm instead of deprecte it. I re-added it, so your problem must be fixed. Emmanuel Max a écrit : I am encountering problems with the maven-buildnumber-plugin which was updated to 0.9.2-SNAPSHOT. I ran mvn with stacktrace and it seems that the build fa

Re: Is really MASSEMBLY-1 fixed?

2006-03-09 Thread Piéroni Raphaël
There is also the pomstrap (.tigris.org) that i don't have yet tested Raphaël 2006/3/8, Stephen Duncan <[EMAIL PROTECTED]>: > > Just to provide another way to run a project, that doesn't involve an > assembly descriptor, which may be of use until the incorporate that > plan into a new version o

Re: How to use dependency in the antrun plugin

2006-03-09 Thread Stephen Duncan
I'm totally unclear on to what exactly your problems are, but have you read: http://maven.apache.org/plugins/maven-antrun-plugin/classpaths.html ? -Stephen On 3/8/06, Markus Sell <[EMAIL PROTECTED]> wrote: > Hi, > > I'm calling my old ant tasks via the antrun plugin from maven 2. By calling > th