Re: [m2] Bootstrap Maven Source Code does not build on Linux

2005-11-18 Thread Peter A. Pilgrim
Brett Porter wrote: I'll try it out now. What is the output of the test failure in maven-core/target/surefire-reports? - Brett On 11/19/05, Peter A. Pilgrim <[EMAIL PROTECTED]> wrote: Hi I followed the instructions in the README.txt and created M2_HOME environment variable. and setting the P

Re: How to disable transitive dependency?

2005-11-18 Thread John Tolentino
Hi Eric, If you look at it's pom (http://www.ibiblio.org/pub/packages/maven2/acegisecurity/acegi-security/0.9.0/acegi-security-0.9.0.pom), this artifact have 21 direct dependencies. Exclude those and the other transitive dependencies will be excluded as well. You can easily do this if you cop

Re: Maven 2.0 installation

2005-11-18 Thread Maria Odea Ching
You should create the project first by executing this command: mvn archetype:create -DgroupId=com.mycompany.app -DartifactId=my-app then cd to the created project (cd my_app) and execute: mvn compile Sean Hennessy wrote: mvn site cannot find the pom.xml "It requires a project, but the build

Re: default version for the release, but not the development

2005-11-18 Thread Brett Porter
Ye,s looks like a bug - please file it in JIRA. - Brett On 11/19/05, Michael Fiedler <[EMAIL PROTECTED]> wrote: > Hi, > >When the prepare goal of release is executed, a default exists for the > release version of each pom.xml. However, the development version prompt did > not have a defaul

Re: [M1] Unforked java ant task

2005-11-18 Thread Brett Porter
fork just menas it starts a new jvm, not that it is run simulataneously. In Maven 1.0 or 1.1, you can use - see the FAQ. This will spawn it for the life of the build. To have it live beyond the build will require Maven 1.1, and the spawn argument from Ant 1.6 (see ants docs). - Brett On 11/19/

Re: [m2] Bootstrap Maven Source Code does not build on Linux

2005-11-18 Thread Brett Porter
I'll try it out now. What is the output of the test failure in maven-core/target/surefire-reports? - Brett On 11/19/05, Peter A. Pilgrim <[EMAIL PROTECTED]> wrote: > Hi > > I followed the instructions in the README.txt and created M2_HOME > environment variable. and setting the PATH. > -

Re: [m2] site:deploy via scp uses the"unzip" command on the remote host. [m1] used tar and gunzip

2005-11-18 Thread Brett Porter
We can make this configurable - please file a feature request. - Brett On 11/19/05, Paul Spencer <[EMAIL PROTECTED]> wrote: > Deploying a site in m2 has changed since m1. m1 used the "tar" and > "gunzip" command on the remote site, where m2 uses the "unzip" command. > This poses a problem for

Re: [m2] No source code in webapp?

2005-11-18 Thread Brett Porter
I think its perfectly reasonable to have web related code in the web project if it won't be used anywhere else. On 11/19/05, Wendy Smoak <[EMAIL PROTECTED]> wrote: > The webapp archetype doesn't create a src/main/java folder. I assume > this is because the recommended structure is to have a multi

Re: How to disable transitive dependency?

2005-11-18 Thread Allan Ramirez
Im not sure if there's already a jira issue for this, if none you can file a jira issue for your request. :) regards, -allan Arik Kfir wrote: I agree - perhaps an element inside the section? On 11/19/05, Barry Kaplan <[EMAIL PROTECTED]> wrote: Allan Ramirez wrote: Hi, add the

Re: [m2] Generating Source in Ant

2005-11-18 Thread Brett Porter
Thanks for this! On 11/19/05, Lee Meador <[EMAIL PROTECTED]> wrote: > 1) Create an email > 2) Put a commit message in it > 3) Put some sort of special subject on it > 4) Attach the patch file to it or maybe include the patch as part of the > text of the email. > > Where do I send this email? > Wha

Re: How to disable transitive dependency?

2005-11-18 Thread Arik Kfir
I agree - perhaps an element inside the section? On 11/19/05, Barry Kaplan <[EMAIL PROTECTED]> wrote: > Allan Ramirez wrote: > > > Hi, > > > > add the tag to your > > and put the artifacts you want to exclude. > > > For 72 dependencies! I think we need the ability to disable transitive > per d

Re: [m2] Any support for Cruise Control yet?

2005-11-18 Thread Carlos Sanchez
Hi, We are not the ones that develope CruiseControl, so we don't know. In fact we suggest Continuum instead which is seamlessly integrated with maven2 http://maven.apache.org/continuum/. On 11/18/05, KC Baltz <[EMAIL PROTECTED]> wrote: > We use Cruise Control here and I'm trying to introduce Mave

Re: [m2] "mvn deploy" hangs if groupId contains a dot.

2005-11-18 Thread Brett Porter
On 11/19/05, Paul Spencer <[EMAIL PROTECTED]> wrote: > According to the naming convention I found via a Google search ( > http://maven.apache.org/reference/conventions.html ), the groupId and > artifactId "should be comprised of lowercase letters, digits, and > hyphens only". That's an old docume

Re: How to disable transitive dependency?

2005-11-18 Thread Barry Kaplan
Allan Ramirez wrote: Hi, add the tag to your and put the artifacts you want to exclude. For 72 dependencies! I think we need the ability to disable transitive per dependency, or maybe a wildcard excludes pattern. I also dream of the ability to have a top-level excludes (eg, "never ever

Re: How to disable transitive dependency?

2005-11-18 Thread Allan Ramirez
Hi, add the tag to your and put the artifacts you want to exclude. acegisecurity acegi-security 0.9.0 runtime groupId-of-the-artifact artifactId-of-the-artifact regards, -allan Eric Jacob wrote: But what about acegi-security-0.9.0.jar? I need it in my webapp. Thanks. Eric

[m2] Any support for Cruise Control yet?

2005-11-18 Thread KC Baltz
We use Cruise Control here and I'm trying to introduce Maven2. Is this possible? K.C.

Re: [m2] install:install-file ignores localRepository?

2005-11-18 Thread Edwin Punzalan
Hmm... I have a different repo location too but install-file is working perfectly on my machine. I'm using 2.0.1 though. Wendy Smoak wrote: I'm trying to install a third-party .jar into a repository (on a shared drive) that is different from my local repository: (reformatted for readabili

Re: [m2] install:install-file ignores localRepository?

2005-11-18 Thread Allan Ramirez
Hi Wendy, I guess this is related to http://jira.codehaus.org/browse/MNG-1551. regards, -allan Wendy Smoak wrote: I'm trying to install a third-party .jar into a repository (on a shared drive) that is different from my local repository: (reformatted for readability) mvn install:install-f

Re: [m2] Installing 3rd Party Jars with POMs

2005-11-18 Thread Allan Ramirez
Hi, Add the -DgeneratePom=true argument to the command. This will generate a generic pom in your local repo along with your jar. If you want to install your created pom, you should execute the install:install-file again with the groupId, artifactId, version of the jar you've installed and with

Re: [M2] & [M1] Multiproject dependencies question

2005-11-18 Thread Henry Isidro
Ballard, Ken wrote: This is a question for Maven 1 & 2, although I know that the answers will be different. Let's say that I have a multiproject with subprojects. Some build jars, one builds a war, a couple that build an ejb jar and an ejb client jar, and one builds an ear. Now let's say that I

[m2] site:deploy via scp uses the"unzip" command on the remote host. [m1] used tar and gunzip

2005-11-18 Thread Paul Spencer
Deploying a site in m2 has changed since m1. m1 used the "tar" and "gunzip" command on the remote site, where m2 uses the "unzip" command. This poses a problem for be since my remote site does not support the "unzip" command. What are my options? Paul Spencer --

RE: [m2] "mvn deploy" hangs if groupId contains a dot.

2005-11-18 Thread David Jackman
I thought all of the Maven2 projects used "org.apache.maven" as their groupId. We're doing it here, too (though I'm not very far along as of yet--we don't have an internal repository set up to deploy to). ..David.. -Original Message- From: Paul Spencer [mailto:[EMAIL PROTECTED] Sent:

[m2] "mvn deploy" hangs if groupId contains a dot.

2005-11-18 Thread Paul Spencer
Version. Maven 2.0 Client.. Windows XP Repository Server... Windows 2000 with cygwin for ssh. I found when the groupId contains a "." the goal deploy will hang after outputting the line during the second and subsequent deploys: [INFO] Retrieving previous build number

[m2] strange problem

2005-11-18 Thread Litton, Tom - CEPM
I've run into a strange problem. If i compile my code with maven 2, during runtime i get the error: java.lang.VerifyError: (class: com/cexppm/applications/documentDelivery/device/svg/PDFMultiPageImageTranscoder$MultiPagePdfTranscoder, method: buildTransformer signature: (I)V) Incompatible type

[m2] Installing 3rd Party Jars with POMs

2005-11-18 Thread David Jackman
I've read the GSG page for installing 3rd party jars, but it says nothing about how to get a corresponding POM installed along with the .jar. Is there a way for me to install a POM I've created for the jar at the same time, or is everyone pretty much copying that in by hand. Should I file an enhan

[m2] install:install-file ignores localRepository?

2005-11-18 Thread Wendy Smoak
I'm trying to install a third-party .jar into a repository (on a shared drive) that is different from my local repository: (reformatted for readability) > mvn install:install-file -DartifactId=asjava -Dfile=asjava.zip -DgroupId=asjava.uniobjects -DlocalRepository=e:\projects\re

RE: m1.1b2 PermGen error, running out of memory

2005-11-18 Thread Antonyan, Tigran\(GE Infrastructure\)
Dion, this didn't help, I even changed it from MAVEN_HOME/bin/maven and set it up to 1024m, but it still fails... the interesting part is that JVM uses only 220m when maven fails (it grows, and when reaches to 220m .. :( ) is there anything else you would suggest me to try? thanks -Origina

RE: [M2] aggregating surefire reports ?

2005-11-18 Thread Mark Shead
> 3) MAIN QUESTION: How do I aggregate all the .xml files to produce a > single html report. If I run 'mvn site' or 'mvn surefire-report:report' > report from the parent POM (flattened as in > Eclipse) I just get lots of /site directories per Maven module. This used to be done with the dashboard

RE: Missing something about reports

2005-11-18 Thread Mark Shead
> Besides ${project}, are there any other special symbols that can go in > site.xml? There is the ${reports} string which will give you menus for any reports you've built. There may be more that I'm not familiar with. --Mark -

RE: [M2] aggregating surefire reports ?

2005-11-18 Thread Mordo, Aviran (EXP N-NANNATEK)
For cruisecontrol all you need to do is to add a merge element in cruisecontrol's config.xml Aviran http://www.aviransplace.com -Original Message- From: Pete [mailto:[EMAIL PROTECTED] Sent: Friday, November 18, 2005 9:13 AM To: Maven Users List Subject: [M2] aggregating sure

RE: Missing something about reports

2005-11-18 Thread Ballard, Ken
Howard, I was pleasantly surprised to see your post on the Maven mailing list. After reading a blog you wrote a while back ("Moving Away from Maven" from http://howardlewisship.com/blog/2004/05/moving-away-from-maven.html), I figured that you were moving your projects away from Maven. Am I right t

[m2] Bootstrap Maven Source Code does not build on Linux

2005-11-18 Thread Peter A. Pilgrim
Hi I followed the instructions in the README.txt and created M2_HOME environment variable. and setting the PATH. % export M2_HOME=/home/peterp/maven-2.0-SNAPSHOT % export PATH=$PATH:$M2_HOME/bin Running the ``bootstrap.sh'' causes failure

Re: [m2] Plugins from alternate repositories

2005-11-18 Thread Milos Kleint
I have a prototype of netbeans plugin that is able to load the pom.xml and create a special project type for it. it's a conversion of th emevenide for netbeans (that works for maven1) It's not even alpha yet though.. there is also a maven2 netbeans plugin at mojo.codehaus.org

Re: Missing something about reports

2005-11-18 Thread Howard Lewis Ship
Sure ... looks like just the wrong version for me; I'll try some other reports and see if I get correct results. Besides ${project}, are there any other special symbols that can go in site.xml? On 11/18/05, Vincent Massol <[EMAIL PROTECTED]> wrote: > Hi Howard, > > > -Original Message- >

Re: Maven 2 - localRepository

2005-11-18 Thread dan tran
remote shot, if you are on unix, you can use softlink -D On 11/18/05, Mike Lantink <[EMAIL PROTECTED]> wrote: > > Is there any way to set this from other than the settings.xml file. ? > Seeting the property in a profile does not seem to take. > > Michael Lantink > Software Engineer > (519) 880-

Re: [m2] Plugins from alternate repositories

2005-11-18 Thread dan tran
use -Dan On 11/18/05, Wendy Smoak <[EMAIL PROTECTED]> wrote: > > A coworker is using NetBeans (5.0 beta 2) and I'm attempting to help > him get it to cooperate with Maven. > > So far we've settled on using Wilfred Springer's plugin, which we did > manage to retrieve by following the instructio

Re: [M2] List of available Archetypes

2005-11-18 Thread Eric Jacob
http://svn.apache.org/viewcvs.cgi/maven/archetype/trunk/maven-archetypes/ HTH Eric On 11/18/05, Mayorgaadame, Alex [IT] <[EMAIL PROTECTED]> wrote: > > Hello all, > > This may be an easy one, but I've lost track of maven lately. > > Anyone can tell me the archetypes that are still valid for Maven

[M2] List of available Archetypes

2005-11-18 Thread Mayorgaadame, Alex [IT]
Hello all, This may be an easy one, but I've lost track of maven lately. Anyone can tell me the archetypes that are still valid for Maven 2.0? Thanks and regards, Alex - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

Re: [M2] & [M1] Multiproject dependencies question

2005-11-18 Thread Arik Kfir
in m2 you can define the version once - in the parent POM via a section. All child POMs just state the group & artifact IDs, without the version (they inherit the version from the parent). as for m1, I think it can only be done via a property... On 11/18/05, Ballard, Ken <[EMAIL PROTECTED]> wrot

RE: Missing something about reports

2005-11-18 Thread Vincent Massol
Hi Howard, > -Original Message- > From: Howard Lewis Ship [mailto:[EMAIL PROTECTED] > Sent: vendredi 18 novembre 2005 18:02 > To: users@maven.apache.org > Subject: Missing something about reports > > So, I'm missing something about reports. > > I want to include a clover report in my sit

Maven 2 - localRepository

2005-11-18 Thread Mike Lantink
Is there any way to set this from other than the settings.xml file. ? Seeting the property in a profile does not seem to take. Michael Lantink Software Engineer (519) 880-2400 ext 2765 www.sandvine.com - To unsubscribe, e-mai

Re: [m2] No source code in webapp?

2005-11-18 Thread Nathaniel G. Auvil
just create a src/main/java directory. when you do a 'mvn package' it will compile and put the classes under the WEB-INF/classes directory Wendy Smoak <[EMAIL PROTECTED]> wrote: The webapp archetype doesn't create a src/main/java folder. I assume this is because the recommended structure is

[m2] No source code in webapp?

2005-11-18 Thread Wendy Smoak
The webapp archetype doesn't create a src/main/java folder. I assume this is because the recommended structure is to have a multi-module project with 'project-core.jar' and have the webapp depend on that. So... just _how_ frowned-upon is it to have source code in a 'war' project, which ultimately

Re: Newbie Multiproject question

2005-11-18 Thread Michael Böckling
Hi Toby, you can't "change directories" with the includes/excludes expression. But instead, you can try the following: maven.multiproject.basedir=${basedir}/../ maven.multiproject.includes=projectA/project.xml This is because the directory scanner will scan all subdirs of maven.multiproject.

Re: [M2] Xdoclet plugin and hibernate task

2005-11-18 Thread Srepfler Srgjan
Could it be that I should modify my pom.xml? Perhaps I used variables that put the files in a wrong position so that it can't find it in the classpath? - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail

RE: [M2] Xdoclet plugin and hibernate task

2005-11-18 Thread Allison, Bob
I'm not really sure why the messages from XDoclet, since the classes look fine. My guess is that XDoclet is ignoring abstract classes in deciding if it can find the class. I think this is something you need to take to the XDoclet list, since I don't think it is a maven problem. -Original Mes

[m2] Plugins from alternate repositories

2005-11-18 Thread Wendy Smoak
A coworker is using NetBeans (5.0 beta 2) and I'm attempting to help him get it to cooperate with Maven. So far we've settled on using Wilfred Springer's plugin, which we did manage to retrieve by following the instructions here: http://blogs.sun.com/roller/page/wilfred?entry=maven_2_netbeans_

Re: [M2] Xdoclet plugin and hibernate task

2005-11-18 Thread Srepfler Srgjan
Allison, Bob wrote: So do all five classes compile without using XDoclet? Yes, they all compile, furthermore they are the same classes from the well established framework appfuse, meaning the annotations are correct (although I'm not shure if he uses hibernate 2.0 or 3.0 as a version). -

RE: [M2] Xdoclet plugin and hibernate task

2005-11-18 Thread Allison, Bob
So do all five classes compile without using XDoclet? -Original Message- From: Srepfler Srgjan [mailto:[EMAIL PROTECTED] Sent: Friday, November 18, 2005 12:00 To: Maven Users List Subject: Re: [M2] Xdoclet plugin and hibernate task BaseObject is in the same folter as the model objects.

Re: [M2] Xdoclet plugin and hibernate task

2005-11-18 Thread Srepfler Srgjan
The classes compile just fine, here's a a class and the baseobject; User.java: package org.appfuse.model; import java.io.Serializable; import java.util.HashSet; import java.util.Set; import org.apache.commons.lang.builder.EqualsBuilder; import org.apache.commons.lang.builder.HashCodeBuilder; i

Missing something about reports

2005-11-18 Thread Howard Lewis Ship
So, I'm missing something about reports. I want to include a clover report in my site documentation. I've added an entry to my pom.xml: maven-clover-plugin And my site.xml includes ${projects} (the standard set do appear). However, nothing about Clover ap

Re: [M2] Xdoclet plugin and hibernate task

2005-11-18 Thread Srepfler Srgjan
BaseObject is in the same folter as the model objects. Allison, Bob wrote: A couple questions: Where does "BaseObject" come from? According to the error message, it is not in the source tree and not on the class path. If should be in the source tree, there is something wrong with that source

RE: [M2] Xdoclet plugin and hibernate task

2005-11-18 Thread Allison, Bob
A couple questions: Where does "BaseObject" come from? According to the error message, it is not in the source tree and not on the class path. If should be in the source tree, there is something wrong with that source file. If it comes from Hibernate, you need to import the class (NOT the packa

RE: Maven 2.0 installation

2005-11-18 Thread Sean Hennessy
mvn site cannot find the pom.xml "It requires a project, but the build is not using one." cd to your folder where the pom.xml resides and try again.. if you used my_app as the artifact-id then cd my_app mvn site -Original Message- From: HappyGoLucky [mailto:[EMAIL PROTECTED] Sent: Frid

[M2] Xdoclet plugin and hibernate task

2005-11-18 Thread Srepfler Srgjan
Hi, I've been trying the xdoclet plugin 1.0-alpha-2 from org.codehaus.mojo ; I've tried to compile some standard hibernate annotated classes from the appfuse project and I'm getting this error: Below is the pom.xml, any ideas why am I getting this error message? Thanks in advance, keep up the g

Re: [m2] Generating Source in Ant

2005-11-18 Thread Lee Meador
So, I have done the following: 1) Changed the .java file to add some descriptions to the parameters 2) Changed the xdoc file to add some more description about the two otherwise unmentioned tags. 3) Used svn to create a patch file that shows the changes. 4) Given it a name with XXX as the issue nu

Maven 2.0 installation

2005-11-18 Thread HappyGoLucky
Greetings, I have installed maven 2.0, as per the installation document. I have created the project as mentioned in "getting started guide". Maven fails when I issues mvn compile command with the following error C:\mvntest>mvn compile [INFO] Scanning for projects... [INFO]

Re: How to disable transitive dependency?

2005-11-18 Thread Eric Jacob
But what about acegi-security-0.9.0.jar? I need it in my webapp. Thanks. Eric On 11/18/05, Pablo <[EMAIL PROTECTED]> wrote: > > Eric Jacob wrote: > > >Hi, > > > >Putting the following dependency results in 72 jars downloaded in > >WEB-INF/lib! > > > > > >acegisecurity > >acegi-security > >0.9.0

Re: How to disable transitive dependency?

2005-11-18 Thread Pablo
Eric Jacob wrote: Hi, Putting the following dependency results in 72 jars downloaded in WEB-INF/lib! acegisecurity acegi-security 0.9.0 runtime Hi If you set provided then these dependencies will not be included in /WEB-INF/lib Cheers Pablo --

How to disable transitive dependency?

2005-11-18 Thread Eric Jacob
Hi, Putting the following dependency results in 72 jars downloaded in WEB-INF/lib! acegisecurity acegi-security 0.9.0 runtime Of course, I can exclude unecessary dependencies, but it's a real pain. A better solution would be to disable transitive dependencies all together. Is it supported? Th

[M2] & [M1] Multiproject dependencies question

2005-11-18 Thread Ballard, Ken
This is a question for Maven 1 & 2, although I know that the answers will be different. Let's say that I have a multiproject with subprojects. Some build jars, one builds a war, a couple that build an ejb jar and an ejb client jar, and one builds an ear. Now let's say that I need the Spring jar in

default version for the release, but not the development

2005-11-18 Thread Michael Fiedler
Hi, When the prepare goal of release is executed, a default exists for the release version of each pom.xml. However, the development version prompt did not have a default listed in all cases. Only one had a default. Is this considered a bug? If not, I would like to request/suggest having

[M1] Unforked java ant task

2005-11-18 Thread Sebastien Arbogast
I created a preGoal for test:test in order to start up a HSQLDB database before I run my Spring and Hibernate JUnit tests. So I would like the HSQL server to be started in another thread. Here is the preGoal I added to my maven.xml file : >From what I understood, fork="true" should mak

Re: [m2] creating a par package and including it in an ear

2005-11-18 Thread Bruno Aranda
Thanks Stéphane! I've finally got it working... I've checked out the current SVN maven, and maven ear plugin and rebuilt everything. I've used the maven-par-plugin from the mojo codehaus sandbox. After building everything I reproduced an issue discussed some days ago in this mailing list [1], where

Re: Intro questions

2005-11-18 Thread Tomislav Stojcevich
The same thing happens to me. I did select add ant project but when I go to add the build definition it asks me for the pom. I tried specifying the build.xml file for the pom and specifying the ant target in the goal but that doesn't work. I am using version 1.0.1. On 11/15/05, Emmanuel Veniss

Re: [m2] Cannot get release:perform to work

2005-11-18 Thread Emmanuel Venisse
in release plugin, you have two goals : - release:prepare - release:perform http://maven.apache.org/guides/mini/guide-releasing.html release:prepare modify versions in pom and tag sources release:perform checkout sources from tag and run the deploy phase to upload all artifacts in remote reposi

Re: Flat structure supported ?

2005-11-18 Thread Doug Douglass
This sounds a lot like: http://jira.codehaus.org/browse/CONTINUUM-381 Doug Christian Schulte wrote: Emmanuel Venisse schrieb: yes, it's supported, but you need to have your module accessible from parent pom url with relative path. if your parent pom url is http://server/path/rep1/parent/po

[m2] RPM Plugin Source [was: Plugin Unit Tests?]

2005-11-18 Thread Allison, Bob
The plugin is in the Mojo (http://mojo.codehaus.org/) project's sandbox. Which download link on which site doesn't work? -Original Message- From: Sena Gbeckor-Kove [mailto:[EMAIL PROTECTED] Sent: Friday, November 18, 2005 09:08 To: Maven Users List Subject: Re: Plugin Unit Tests? Hi Bo

Re: [m2] Cannot get release:perform to work

2005-11-18 Thread dan tran
I wonder if release plugin need to issue login first for cvs. So far i dont see it is doing so ( from source) -D On 11/18/05, Marcel Dullaart <[EMAIL PROTECTED]> wrote: > > > Hi all, > > Can someone explain me how I should do a release cycle? > > I have setup a multi module project and after som

Newbie Multiproject question

2005-11-18 Thread Weston, Toby
Hi Guys, Probably a silly question but can I use the multiple projects plugin for projects that aren't under the standard (single?) folder structure? ie, instead of having; projectroot projectroot\project.xml projectroot\projectA projectroot\projectA\projectA.xml projectroot\projectB projectro

[M2] aggregating surefire reports ?

2005-11-18 Thread Pete
I have now got the JUnit reports coming out in XML reportFormat. I'd like to aggregate the XML file to produce a single HTML surefire report - I'm thinking this would be the report published by CruiseControl ? 1) I'm a bit confused by how to turn the .XML into .HTML, I've configured the surefire-

Re: Plugin Unit Tests?

2005-11-18 Thread Sena Gbeckor-Kove
Hi Bob, I am trying to use your RPM plugin but can't find th code in svn and the download link on the site doesn't work. Are you still working on it? Thx On 15/11/05, Allison, Bob <[EMAIL PROTECTED]> wrote: > That was it. Thanks! > > -Original Message- > From: John Casey [mailto:[EMAIL

[m2] Cannot get release:perform to work

2005-11-18 Thread Marcel Dullaart
Hi all, Can someone explain me how I should do a release cycle? I have setup a multi module project and after some fiddling about I got release:prepare to work using: mvn -Dproject.scm.developerConnection=scm:cvs:pserver:uid:[EMAIL PROTECTED]:/cvsroot:my_project_name release:prepare So now I'd

Re: [m2] Using

2005-11-18 Thread Wim Deblauwe
And it's back up: http://jira.codehaus.org/browse/MNG-1619 regards, Wim 2005/11/18, Wim Deblauwe <[EMAIL PROTECTED]>: > > Hmmm... JIRA is down currently (http://jira.codehaus.org) > > > 2005/11/18, Brett Porter <[EMAIL PROTECTED]>: > > > > Sure, please attach it to a JIRA issue. > > > > Thanks,

Re: Flat structure supported ?

2005-11-18 Thread Emmanuel Venisse
Can you describe your directory structure, your modules definition and the url you use to add your project? Emmanuel Christian Schulte a écrit : Emmanuel Venisse schrieb: yes, it's supported, but you need to have your module accessible from parent pom url with relative path. if your parent

Re: [m2] How to detach Maven plugin from the lifecycle and attach my own plugin

2005-11-18 Thread Richard Allen
Thanks, I've defined my own packaging and it does solve my problem. Richard Allen Brett Porter wrote: You need to define your own packaging instead of war - goals can't be atached but you can redefine the lifecycle calling the other goals. - Brett On 11/18/05, Richard Allen <[EMAIL PROTECTED

Re: [1.1b1] timestamps in Simian and Checkstyle reports

2005-11-18 Thread Gisbert Amm
Gisbert Amm wrote: Is it possible to get timestamps in Simian and Checkstyle reports (time of the latest report built)? I'm using Maven 1.1 beta 1. Sorry that I've not mentioned that in my initial post. Gisbert - To unsubsc

Re: maven-surefire-plugin - 2.0-beta-2-SNAPSHOT anyone send to me ?

2005-11-18 Thread Pete
Reading another it said 2.0-beta-2-SNAPSHOT was needed to be able to generate xml Junit reports using reportFormat of xml . But I've just tried 2.0 as you said, and now have xml results. Is this a case where version 2.0 is pointing at something else via the metadata ? just wanted to improve my u

timestamps in Simian and Checkstyle reports

2005-11-18 Thread Gisbert Amm
Is it possible to get timestamps in Simian and Checkstyle reports (time of the latest report built)? Kind regards, Gisbert Amm - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: maven-surefire-plugin - 2.0-beta-2-SNAPSHOT anyone send to me ?

2005-11-18 Thread Brett Porter
I just realised what you wrote... why 2.0-beta-2-SNAPSHOT? Why not 2.0? On 11/18/05, Pete <[EMAIL PROTECTED]> wrote: > Unfortunately no one has deployed the latest > > org.apache.maven.plugins > maven-surefire-plugin > 2.0-beta-2-SNAPSHOT > > version to http:

Re: Flat structure supported ?

2005-11-18 Thread Christian Schulte
Emmanuel Venisse schrieb: yes, it's supported, but you need to have your module accessible from parent pom url with relative path. if your parent pom url is http://server/path/rep1/parent/pom.xml and module name is ../mymodule then, http://server/path/rep1/mymodule/pom.xml must be a valid url

Re: [m2] where to put test data

2005-11-18 Thread David Sag
Just a short note tho: There is no system property called java.io.tmp.dir it's called java.io.tmpdir Kind regards, Dave Sag   David Sag <[EMAIL PROTECTED]> wrote on 18-11-2005 11:08:17: > > Thanks John those answers were perfectly satisfactory and i have > updated my code accordingly.

Re: [m2] javadoc plugin issues

2005-11-18 Thread Anuerin Diaz
thanks for the heads-up. anybody have a roadmap on when it is going to be released to the public repositories? ill try building it on my own but the last time i downloaded a plugin's source code i was not able to make it run. i cant install subversion in my workstation so i had to download everythn

Re: maven-surefire-plugin - 2.0-beta-2-SNAPSHOT anyone send to me ?

2005-11-18 Thread Pete
Unfortunately no one has deployed the latest org.apache.maven.plugins maven-surefire-plugin 2.0-beta-2-SNAPSHOT version to http://snapshots.maven.codehaus.org/maven2 So if someone could deploy or send it tom I would be most grateful. cheers On 18/11/05, Br

Re: [m2] which report?

2005-11-18 Thread Brett Porter
All are run by default when the plugin is included: ... configured like in build ... To restrict to one report, add this inside the plugin: report-goal-name Reportset is to reporting as execution is to build plugin. Note that any general reporting configuration is also applied when t

question about synchronization

2005-11-18 Thread jeff li
Hi, With maven IDE for maven 1.0 , maven can easily update .classpath file by appending the paths associated to added dependencies on project.xml. now I am trying to use maven2 to my project, however, and can not synchronize .classpath to pom.xml with maven-eclipse-plugin. please do me a favor than

question about synchronization

2005-11-18 Thread jeff li
Hi, With maven IDE for maven 1.0 , maven can easily update .classpath file by appending the paths which are just associated to added dependencies on project.xml. now I have no idea of how to do that , please help me. thanks! Jeff

Re: [m2] Using

2005-11-18 Thread Wim Deblauwe
Hmmm... JIRA is down currently (http://jira.codehaus.org) 2005/11/18, Brett Porter <[EMAIL PROTECTED]>: > > Sure, please attach it to a JIRA issue. > > Thanks, > Brett > > On 11/18/05, Wim Deblauwe <[EMAIL PROTECTED]> wrote: > > Hi Brett, > > > > Is it ok if I send you a 60 KB zip file with my se

Re: [m2] building from svn and/or snapshots available

2005-11-18 Thread Bruno Aranda
I've used the bootstrap script following the instructions in the README file and the building went ok... Bruno 2005/11/18, Bruno Aranda <[EMAIL PROTECTED]>: > Hi all, > > I've checked out the maven sources following the instructions on the > web site and now I am trying to build everything, using

[m2] building from svn and/or snapshots available

2005-11-18 Thread Bruno Aranda
Hi all, I've checked out the maven sources following the instructions on the web site and now I am trying to build everything, using the 'mvn assembly:assembly' command. I keep getting this build failure: [INFO] [jar:jar] [INFO] Building jar: /data/src/maven/temp/maven-site/maven-script/maven-scr

[m2] which report?

2005-11-18 Thread David Sag
The plugin i am writing has 3 general goals and 2 reports. How do I specify in my pom.xml file which report  to run? Kind regards, Dave Sag  

Re: [m2] Problematic properties ?

2005-11-18 Thread Brett Porter
If it changes in the root pom, then you should change the version of the root pom, and the corresponding child. You don't have to change the version with snapshots, but that also means old builds may not be reproducible until the versions are fixed in time. But you can't define those properties in

Re: [m2] How to detach Maven plugin from the lifecycle and attach my own plugin

2005-11-18 Thread Brett Porter
You need to define your own packaging instead of war - goals can't be atached but you can redefine the lifecycle calling the other goals. - Brett On 11/18/05, Richard Allen <[EMAIL PROTECTED]> wrote: > How do I detach the maven-war-plugin from the build lifecycle and attach > my own plugin in it'

Re: surefire and systemProperties: bug?

2005-11-18 Thread Brett Porter
Forking support will be available in the next version. Cheers, Brett On 11/18/05, Jérôme BERNARD <[EMAIL PROTECTED]> wrote: > Hi, > > I am trying to specify the java.library.path property for my tests but > it seems that the following configuration does not work: > > > org.apache.maven.plugins

Re: maven-surefire-plugin - 2.0-beta-2-SNAPSHOT anyone send to me ?

2005-11-18 Thread Brett Porter
add a pluginRepository with: http://snapshots.maven.codehaus.org/maven2 to your settings.xml file in a profile. it should be downloaded. On 11/18/05, Pete <[EMAIL PROTECTED]> wrote: > Would any kind person email the .JAR and .POM etc for the > 2.0-beta-2-SNAPSHOT version of surefire plugin. > > I

Re: [m2] Using

2005-11-18 Thread Brett Porter
Sure, please attach it to a JIRA issue. Thanks, Brett On 11/18/05, Wim Deblauwe <[EMAIL PROTECTED]> wrote: > Hi Brett, > > Is it ok if I send you a 60 KB zip file with my setup so you can take a look > at it? It will probably make things clearer that way. > > regards, > > Wim > > 2005/11/18, Bret

Re: use of ArtifactHandler

2005-11-18 Thread Brett Porter
As I said, your should be uberwar - not war (it needs to match the role-hint, as stated in the docs). On 11/18/05, Nigel Magnay <[EMAIL PROTECTED]> wrote: > I have an 'uberwar' mojo; it's components.xml has a lifecyclemapping > and an artifacthandler definition, both with the role-hint of uberwar

Re: [m2] install plugin bug with classifiers ?

2005-11-18 Thread Julien Stern
On Wed, Nov 09, 2005 at 10:37:22AM +1100, Brett Porter wrote: > The first is easier. You should be able to remove the executions > element then, and just add the configuration for both plugins in the > profile when it is activated. > > If that doesn't work, can you attach a minimal test case to a

Re: [m2] javadoc plugin issues

2005-11-18 Thread Jos Dirksen
To add something to the first issue. This is solved in subversion. If you check out the plugin and build it, you should get a javadoc plugin that doesn't show you an empty page, but shows the javadoc index page. Jos On 11/18/05, Anuerin Diaz <[EMAIL PROTECTED]> wrote: > i just browsed JIRA and th

Re: [m2] site.xml reference

2005-11-18 Thread Christophe DENEUX
Hi Robert, As written in http://maven.apache.org/guides/mini/guide-site.html, site.xml is the renamed file "navigation.xml" of the Maven 1. Christophe Robert Erler wrote: i've found a reference for the pom.xml at http://maven.apache.org/maven-model/maven.html is there something similar fo

  1   2   >