Re: Property 'name' has no write method

2005-11-21 Thread Emmanuel Venisse
do you have run it (with continuum and with maven) on the same machine? This error isn't a pb with continuum but it's a maven error. We write executable, arguments and working directory in logs with INFO level. Search in your logs ContinuumBuildExecutor:maven. Emmanuel Tim McCune a écrit :

Build indicator stuck on 'In progress'

2005-11-21 Thread Trey Moore
Anybody else have this problem? One of my projects says 'In Progress' although it isn't actually in progress. The Delete link is inactive so I can't just delete it and add it again. Is there a way around this? Continuum is cool btw. Thanks, Trey

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

2005-11-21 Thread Jörg Schaible
Brett Porter wrote on Saturday, November 19, 2005 3:51 AM: We can make this configurable - please file a feature request. Isn't it already? I find following snippet in the maven sample project (http://jira.codehaus.org/browse/ARCHETYPE-8): plugins plugin

Build Error while creating project

2005-11-21 Thread Deepak biswas
I have installed the mvn 2.0 and have set the path accordingly. but when i am trying to execute the following command it is giving the following error. Please suggest me what to do. C:\Documents and Settings\ciscomvn archetype:create -DgroupId=com.mycompany.app -DartifactId=my-app [INFO]

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

2005-11-21 Thread Brett Porter
Yes, but not the creation (we need to allow it to make a tar, not a zip). - Brett On 11/21/05, Jörg Schaible [EMAIL PROTECTED] wrote: Brett Porter wrote on Saturday, November 19, 2005 3:51 AM: We can make this configurable - please file a feature request. Isn't it already? I find following

Re: [M2] [M1] Multiproject dependencies question

2005-11-21 Thread Brett Porter
That's not an exception to the inheritence rule described. On 11/21/05, Jörg Schaible [EMAIL PROTECTED] wrote: Arik Kfir wrote on Friday, November 18, 2005 7:20 PM: in m2 you can define the version once - in the parent POM via a dependencyManagement section. All child POMs just state the

Re: variable references for site generation

2005-11-21 Thread Brett Porter
There is an open issue for enabling proper multiproject (I think it is 699?) sites - but there is no variable to insert the references yet. - Brett On 11/21/05, Anuerin Diaz [EMAIL PROTECTED] wrote: hi, where can i find a listing of the available references that i could use during site

[m2] RAR plugin

2005-11-21 Thread Henry Isidro
I'm using the RAR plugin and I found out that it does not create a JAR file to include in the package. So, I invoked the JAR plugin and everything worked fine. Now, I tried using the install plugin to install the rar file into my local repository and what happened was the plugin installed the

RE: Newbie Multiproject question

2005-11-21 Thread Weston, Toby
Thanks for the tip Michael, that seems to work great! Out of interest, I tried the following, kind of expecting it to work which off course meant it didn't! maven.multiproject.includes=${basedir}/../ProjectA/project.xml Anyway, thanks again, Toby -Original Message- From: Michael

System properties and project.properties

2005-11-21 Thread Sebastien Arbogast
I need to send an e-mail from one of my classes (using commons-email) and I'd like to be able to configure my SMTP server data through properties in project.properties. I think I remember from MDN that there is a mean to do so thanks to System properties, but I don't have the book right now and I

[m2] plugin default properties

2005-11-21 Thread Nigel Magnay
I have a mojo which is pretty much like the Jar mojo. I know I can set the main class for the manifest with something like plugin groupIdmygroup/groupId artifactIdmyplugin/artifactId configuration archive manifest

Re: [m2] RAR plugin

2005-11-21 Thread Brett Porter
That bug is fixed in SVN - however, I'm not sure that the exceution should be needed, but I don't quite understand what you are attempting - hopefully someone with more RAR experience than me (that's anyone :) will know the answers. - Brett On 11/21/05, Henry Isidro [EMAIL PROTECTED] wrote: I'm

Surefire not ignoring test failures

2005-11-21 Thread Rubén Barroso
Hello, any suggestion to get surefire plugin ignore test failures in order to generate the project site? I've got this configuration in my pom: plugin groupIdorg.codehaus.mojo/groupId artifactIdsurefire-report-maven-plugin/artifactId configuration

RE: [mvn] using cactus with maven2

2005-11-21 Thread Vincent Massol
Hi Alexandre, The Cactus plugin is a *maven1* plugin not a maven2 one. There's no cactus plugin for maven2 yet. The recommendation right now (while waiting for a proper cactus m2 plugin) is to use Cargo to all container manipulations (http://cargo.codehaus.org). In any case the next version of

Re: [m2] Copy the dependencies of a project in a custom plugin

2005-11-21 Thread Brett Porter
On 11/21/05, Wim Deblauwe [EMAIL PROTECTED] wrote: Hi, I'm writing a custom plugin and I need to copy the project's dependencies from the local repository to a certain directory. How can I do this best? You should use ${project.artifacts} instead which includes all the transitive artifacts,

Re: Surefire not ignoring test failures

2005-11-21 Thread Brett Porter
This needs to be specified on the tests itself. There is a bug in the surefire report plugin that isn't doing this by default as it should be. - Brett On 11/21/05, Rubén Barroso [EMAIL PROTECTED] wrote: Hello, any suggestion to get surefire plugin ignore test failures in order to generate the

Re: [m2] Copy the dependencies of a project in a custom plugin

2005-11-21 Thread Wim Deblauwe
What dependency do I need for the Artifact and Project classes in my Mojo? 2005/11/21, Brett Porter [EMAIL PROTECTED]: On 11/21/05, Wim Deblauwe [EMAIL PROTECTED] wrote: Hi, I'm writing a custom plugin and I need to copy the project's dependencies from the local repository to a certain

Re: [m2] Copy the dependencies of a project in a custom plugin

2005-11-21 Thread Brett Porter
maven-artifact and maven-project (though you may not need the project dependency if you are just using the expression below as it is runtime, and Mavne provides it). - Brett On 11/21/05, Wim Deblauwe [EMAIL PROTECTED] wrote: What dependency do I need for the Artifact and Project classes in my

Re: [m2] Copy the dependencies of a project in a custom plugin

2005-11-21 Thread Wim Deblauwe
The collection of artifacts is empty. When I was using dependencies, it was not empty. What am I doing wrong? This is my code: /** * @goal process-resources * @description Copy the dependencies for the InstallShield Merge Module */ public class MsmProcessResourcesMojo extends AbstractMojo { /** *

Re: [m2] Copy the dependencies of a project in a custom plugin

2005-11-21 Thread clark . rao
Dear Wim, For my sample-- dependencies dependency groupIdorg.apache.maven/groupId artifactIdmaven-plugin-api/artifactId version2.0/version /dependency pom.xml project modelVersion4.0.0/modelVersion groupIdsample.plugins/groupId

RE: [m2] Copy the dependencies of a project in a custom plugin

2005-11-21 Thread Allison, Bob
The tag @requiresDependencyResolution has to be on the class, not the parameter. -Original Message- From: Wim Deblauwe [mailto:[EMAIL PROTECTED] Sent: Monday, November 21, 2005 06:41 To: Maven Users List Subject: Re: [m2] Copy the dependencies of a project in a custom plugin The

Re: WebDav

2005-11-21 Thread Mark Hobson
Just an update on this - the slide pom is now fixed and my colleague Mike intends to submit the code within a week or so. I believe he's watching the users list, but if anyone needs to follow up on this then his contact details are [EMAIL PROTECTED] Cheers, Mark On 08/11/05, Mark Hobson [EMAIL

Re: [m2] Copy the dependencies of a project in a custom plugin

2005-11-21 Thread Wim Deblauwe
ok, thanks! That was it. 2005/11/21, Allison, Bob [EMAIL PROTECTED]: The tag @requiresDependencyResolution has to be on the class, not the parameter. -Original Message- From: Wim Deblauwe [mailto:[EMAIL PROTECTED] Sent: Monday, November 21, 2005 06:41 To: Maven Users List

[m2] mojo report (sink mandatory content ?)

2005-11-21 Thread Olivier Lamy
Hi, I have a question concerning doxia Sink in report Mojo. Is there any mandatory content in Sink ? Actually I try the very simple : Sink sink = getSink(); sink.head(); sink.text(Test Report); sink.head_(); sink.body(); sink.text(test); sink.body_(); sink.flush(); sink.close(); As I

Re: [mvn] using cactus with maven2

2005-11-21 Thread Alexandre Russel
Vincent Massol a écrit : The recommendation right now (while waiting for a proper cactus m2 plugin) is to use Cargo to all container manipulations (http://cargo.codehaus.org). thanks for your answer. I am trying to use cargo. My pom.xml is: build plugins plugin

[m2] Surefire report Locale

2005-11-21 Thread Cabasson Denis
My surefire-plugin (2.0) generates XML reports with my current Locale (FR). When trying to get a report out of those XML files, I get the following error. It's probably because in locale FR you tipe 0,187 instead of 0.187 (silly thing). Looks like the XML parser isn't taking this into account

[M2] maven-ejb-plugin: build setup help

2005-11-21 Thread Ian Vellosa
Hi there! I’m hoping someone can point me in the right direction here. I have done all the research that my head can handle and not found a good example for building the EJB jar file with Maven 2 while using xdoclet. At the moment my pom.xml file has two sections that I think are relevant. The

Re: [m2] Copy the dependencies of a project in a custom plugin

2005-11-21 Thread Stephen Cowx
Hi I would like to take this one step further, I need to obtain the details for a single dependency declared in a pom and use it in my plugin: My plugin, which runs SQL scripts, needs to reference the JDBC driver of the plugin users choice. I need to be able to put the jar file containing

Re: [m2] Copy the dependencies of a project in a custom plugin

2005-11-21 Thread Wim Deblauwe
Good question. I also noticed that the properties/ subelement of dependency does not exist anymore like in Maven 1. What is the equivalent for that now? regards, Wim 2005/11/21, Stephen Cowx [EMAIL PROTECTED]: Hi I would like to take this one step further, I need to obtain the details for

Re: How to disable transitive dependency?

2005-11-21 Thread Eric Jacob
Hi John, Thanks for your suggestion. It worths a look! But I still think the ability to disable transitive dependency would be a good thing. It just doesn't feel right to me to exclude more dependencies than I really need. Eric On 11/18/05, John Tolentino [EMAIL PROTECTED] wrote: Hi Eric,

RE: [m2] Surefire report Locale

2005-11-21 Thread Cabasson Denis
I've opened a JIRA issue on this point. There is definitly a line in the Parser not taking the Locale into account http://jira.codehaus.org/browse/MOJO-128 Hope someone will be able to fix it (shouldn't be that difficult). Thx Denis

Re: [m2] Copy the dependencies of a project in a custom plugin

2005-11-21 Thread Wim Deblauwe
Is it also possible to only get the first-line dependencies? I notice the website can create a distintion between the direct dependencies and the dependencies of the dependencies. regards, Wim 2005/11/21, Allison, Bob [EMAIL PROTECTED]: The tag @requiresDependencyResolution has to be on the

[M2] how to run a goal by specifying the plugin only - default goal?

2005-11-21 Thread puschteblume
I have created a plugin that can be run via buildnumber:create Then I remembered that the clean plugin can be startet, by simply run clean. How I have to declare the plugin that there is a default goal? Heiko - To

Re: [M2] how to run a goal by specifying the plugin only - default goal?

2005-11-21 Thread Stephen Cowx
Hi I saw some notes on how to do this in: http://maven.apache.org/guides/plugin/guide-java-plugin-development.html See the section on Shortening the Command Line I haven't tried it so I don't know if it works but it seems to be what you are asking for Regards Stephen puschteblume

Re: [M2] maven-ejb-plugin: build setup help

2005-11-21 Thread Srepfler Srgjan
Yes, the situation is very bad as far as documentation is concerned, there's even less documentation on how to generate hibernate artifacts... Ian Vellosa wrote: Hi there! I’m hoping someone can point me in the right direction here. I have done all the research that my head can handle and

Re: [M2] how to run a goal by specifying the plugin only - default goal?

2005-11-21 Thread puschteblume
Hi Stephen Thanks. But this hint gives you access to the plugin directly, without specifying it in the pom or run it by specifying groupid:artifact:version .. Heiko Stephen Cowx wrote: Hi I saw some notes on how to do this in:

Re: [M2] maven-ejb-plugin: build setup help

2005-11-21 Thread Pete
To fix your first problem I believe you need ejbdoclet destdir=${project.build.directory}/generated-sources/xdoclet and deploymentdescriptor destDir=${project.build.outputDirectory}/META-INF/ it seems unless the .java is generated to here it is not picked up - not sure

[M2] Impossible to use 1.5 sources in plugin?

2005-11-21 Thread Jose Gonzalez Gomez
Hi there, I'm developing a plugin for Maven, and I have found the following error: com.thoughtworks.qdox.parser.ParseException: syntax error @[28,47] in file:/C:/Documents and Settings/jgonzalez/Mis documentos/proyecto

Re: Plugin Unit Tests?

2005-11-21 Thread Sena Gbeckor-Kove
Thx, Have found it in the sandbox a suggested. Regards On 18/11/05, Sena Gbeckor-Kove [EMAIL PROTECTED] wrote: 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,

[m2] new xjc plugin announcement

2005-11-21 Thread Ashley Williams
http://mojo.codehaus.org/xjc-maven-plugin/index.html The xjc plugin has now been re-implemented to delegate to the jaxme ant task. http://ws.apache.org/jaxme/manual/ch02.html#N10199 Any issues then please email me direct [EMAIL PROTECTED] as I don't believe a jira entry has been set up

RE: [m2] how do i exclude a specific file or list of files from a jar in m2

2005-11-21 Thread Maruf Aytekin
Hello how do i exclude a specific file or list of files from a jar in m2. I looked in the documentation on maven.apache.org but couldn't find the answer thx - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

m1.1b2 SET MAVEN_OPTS=-XX:MaxPermSize=1024m doesn't work

2005-11-21 Thread Antonyan, Tigran\(GE Infrastructure\)
Hi all I'm experiencing a problem with JVM heap size (maven multiproject:site fails when JVM memory usage reaches to 220m) I've tried SET MAVEN_OPTS=-XX:MaxPermSize=1024m from command line it didn't work, I changed MAVEN_OPTS value from %MAVEN_HOME%/bin/maven to 1024(originaly it was 256m) and

Re: [m2] how do i exclude a specific file or list of files from a jar in m2

2005-11-21 Thread puschteblume
http://maven.apache.org/maven-model/maven.html Check for resource. There is a exclude tag. I think, this is what you are looking for. Heiko Maruf Aytekin wrote: Hello how do i exclude a specific file or list of files from a jar in m2. I looked in the documentation on maven.apache.org but

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

2005-11-21 Thread David Jackman
Well, that certainly worked to install the POM in a second command. How far-fetched would it be to add a property to the install-file goal to copy the POM at the same time? ..David.. -Original Message- From: Allan Ramirez [mailto:[EMAIL PROTECTED] Sent: Friday, November 18, 2005 5:21

RE : [m2] mojo report (sink mandatory content ?)

2005-11-21 Thread Olivier Lamy
Ok sorry. I didn't know what made isExternalReport(). Now I'm really sure ;-) - Olivier -Message d'origine- De : Olivier Lamy [mailto:[EMAIL PROTECTED] Envoyé : lundi 21 novembre 2005 13:30 À : Maven Users List Objet : [m2] mojo report (sink mandatory content ?) Hi, I have a question

RE: m1.1b2 junit-report and jcoverage plugins don't share resources (running unit test twice)

2005-11-21 Thread Antonyan, Tigran\(GE Infrastructure\)
Hi all, I have 2 plugins enabled for unit test reports: junit-report and jcoverage, now each one of them is running unit test for itself and I was wondering if there is a way to make one of them (any one of them) to use already generated reports from other plugin and not run the test again

Re: [m2] org.apache.maven.lifecycle.LifecycleExecutionException: The plugin 'org.apache.maven.plugins:maven-resources-plugin' does not exist or no valid version could be found

2005-11-21 Thread Frank Russo
I'm getting this also trying to set up and run the example. Any idea. We also do not have or need a proxy... Frank Russo Senior Developer FX Alliance, LLC I think repo1.maven.org is having some issues at present. We're working to rectify them - please try again soon.

Weird output on generated FAQ page

2005-11-21 Thread Anuerin Diaz
hi, i am trying to make use of the FML format for some project FAQs. i am basing my soruce files on the ones i found on http://svn.apache.org/viewcvs.cgi/maven/site/trunk/src/site/fml/ but instead of getting an output similar to http://maven.apache.org/general.html#Compiling-J2SE-5(it is placed

Automate the build.

2005-11-21 Thread Charles Anto
how to set time in maven.xml to run the build in every day night 12 AM. we are runing maven in ret hat linux 9. crontab does not run maven script, so i tried cruise controller, but i couldn't find linux version, seems to be not supporting linux, is it true? pls help me, how to do nightly

Re: Automate the build.

2005-11-21 Thread Emmanuel Venisse
You can try continuum : http://maven.apache.org/continuum/ Emmanuel Charles Anto a écrit : how to set time in maven.xml to run the build in every day night 12 AM. we are runing maven in ret hat linux 9. crontab does not run maven script, so i tried cruise controller, but i couldn't find linux

Re: Automate the build.

2005-11-21 Thread Gisbert Amm
Charles Anto wrote: how to set time in maven.xml to run the build in every day night 12 AM. we are runing maven in ret hat linux 9. crontab does not run maven script I you can run your Maven script from the command line, you should be able to run it via cron, too. Make sure the cron user has

Deploy Version

2005-11-21 Thread Duane Homick
Is there a way to determine what version of an artifact was deployed after the deploy step runs. ie. ${project.build.finalName} still contains sample-1.0.0-SNAPSHOT and not the version that was released (ie. sample-1.0.0--20051121.162713-2.jar). Is there any variable set after the deploy

Re: [m2] can't reach maven-proxy

2005-11-21 Thread Didier Brichet
Hi, thank you for your answer, Edwin. But what I am trying to do is to set up an internal central repository as wrote at http://maven.apache.org/guides/introduction/introduction-to-repositories.html : It is not recommended that you scrape or rsync:// a full copy of Ibiblio as there is a

[m2] How to skip tests in packaging

2005-11-21 Thread Rubén Barroso
Hello, I'm trying to bypass testing in package phase (creating a WAR). Anyone knows how could I perform this? Thanks in advance! - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: [m2] How to skip tests in packaging

2005-11-21 Thread Emmanuel Venisse
mvn -Dmaven.test.skip=true package Rubén Barroso a écrit : Hello, I'm trying to bypass testing in package phase (creating a WAR). Anyone knows how could I perform this? Thanks in advance! - To unsubscribe, e-mail: [EMAIL

[m2] delicious bookmarks plugin comments

2005-11-21 Thread Ashley Williams
(hammer looks for nail) Hi, Just trying to find out if anybody would find it useful to have a maven delicious bookmarks plugin. I've created a java module that allows me to access various delicious functionality at the command line - originally because I wanted a way to export my Safari

Re: How to disable transitive dependency?

2005-11-21 Thread Eric Biesterfeld
I think there's something more wrong if a jar says it has dependencies and it doesn't actually need them. Are you sure you don't need these? If so, consider using your own repository before ibiblio and strip these of their dependencies. On 11/21/05, Eric Jacob [EMAIL PROTECTED] wrote: Hi John,

Re: [m2] How to skip tests in packaging

2005-11-21 Thread Rubén Barroso
Thanks a lot, but I actually meant how could I achieve that configuring it through the pom. Is it possible? Thanks again. 2005/11/21, Emmanuel Venisse [EMAIL PROTECTED]: mvn -Dmaven.test.skip=true package Rubén Barroso a écrit : Hello, I'm trying to bypass testing in package phase

[m2] Is this correct behavior for optional dependency?

2005-11-21 Thread David Jackman
Based on my reading of the docs and the mail archives, adding optionaltrue/optional to a dependency should affect other projects that depend on my project, but not affect the building of my own project. Is that true? Right now, I'm seeing otherwise. If I mark a dependency as optional, then it's

Re: [M2] List of available Archetypes

2005-11-21 Thread Lee Meador
How do I find out what each one does? Is that documented anywhere? This is what I have found out by wandering around in the docs: j2ee - ? mojo - ? portlet - ? profiles - ? quickstart - default version for java projects with packaging=jar site - ? (I remember seeing this explained somewhere but

Re: [m2] Generating Source in Ant

2005-11-21 Thread Lee Meador
If I go here: http://jira.codehaus.org/secure/Dashboard.jspa There is no maven-antrun-plugin project. All the other maven plugins seem to be there. But if I go to: http://jira.codehaus.org/browse/MNG?report=com.atlassian.jira.plugin.system.project:openissues-panel (I got there by picking the

Re: [m2] how to use javacc?

2005-11-21 Thread Jesse McConnell
if you tell me how jjtree works then I'll see about putting it in the javacc plugin..I think I was the last guy to touch the javacc mojo plugin so I'll put this in if you let me know what it needs to do.. lemme poke around and learn something about jjtree and see what I can do jesse On

Re: [m2] What happened to Spring - now it includes all its dependencies

2005-11-21 Thread Matt Raible
On 11/19/05, Carlos Sanchez [EMAIL PROTECTED] wrote: Hi all, I'll try to put a bit of light at this. - I've put the spring jars in the repo so you guys can use them in m1 and m2 - At first there were no poms because it takes me some time to have them ready - I'm working on the poms, I've

Disallowing access to projects based on user roles?

2005-11-21 Thread lists
Hi, is it possible to hide or disallow access to certain projects within continuum based on user roles? This is a requirement for inhouse projects where I am working - not everybody may work with all projects. Still it would make sense to use one continuum instance to build the projects.

Re: [m2] What happened to Spring - now it includes all its dependencies

2005-11-21 Thread Chad Brandon
Matt Raible wrote: On 11/19/05, Carlos Sanchez [EMAIL PROTECTED] wrote: Hi all, I'll try to put a bit of light at this. - I've put the spring jars in the repo so you guys can use them in m1 and m2 - At first there were no poms because it takes me some time to have them ready - I'm working

Setting an arbitrary property for a plugin within its configuration

2005-11-21 Thread lists
Hi, I always need to run the eclipse plugin with a certain profile (some common resources must be ignored, the eclipse plugin does not yet properly add common resources outside project folders). We defined a build profile that does not define this resource and activate it using a role

confusing maven 2 dependency behavior

2005-11-21 Thread Charlie Groves
Hi, I'm migrating some projects from maven 1 to 2. We have a dependency in our project.xml that looks like dependency idjunit-addons/id version1.4/version typetest/type /dependency so I add dependency artifactIdjunit-addons/artifactId groupIdjunit-addons/groupId

Re: confusing maven 2 dependency behavior

2005-11-21 Thread Anuerin Diaz
try adding a dummy pom for it. the developers said that the future release version of the install plugin is going to create a pom automatically but for now i just create them manually. recently somebody has suggested adding an option to install-file to generate poms so you might try searching the

Re: [m2] How to skip tests in packaging

2005-11-21 Thread Anuerin Diaz
the surefire plugin has a configuration[1] for skipping tests. you can configure a profile[2] that has this set to true if you need it. hth. [1] http://maven.apache.org/plugins/maven-surefire-plugin/test-mojo.html [2] http://maven.apache.org/guides/introduction/introduction-to-profiles.html

Re: [m2] how to use javacc?

2005-11-21 Thread Jesse McConnell
0.6-SNAPSHOT of javacc-maven-plugin now supports jjtree.. couple of things, the 'generate' goal from previous iterations of the plugin has been changed to 'javacc' and the 'jjtree' goal is now active. I also redeployed the site so the new goals and information are up there now at

Re: Configuring Continuum to start automatically on Fedora Core 4

2005-11-21 Thread Oscar Picasso
Yes, I did look at the guide, but I needed to adapte it to Fedora Core 4 because FC4 does not have update-rc.d and also because the rc file need to have special comments. Emmanuel Venisse [EMAIL PROTECTED] wrote: Do you have look at

Re: [m2] Copy the dependencies of a project in a custom plugin

2005-11-21 Thread Brett Porter
Two ways to solve this: - have the user specify which dependency to use via configuration: plugin ... configuration jdbcDrivercom.mysql:mysql-driver/jdbcDriver /configuration /plugin ... dependency groupIdcom.mysql/groupId artifactIdmysql-driver/artifactId version5.0.0/version

Re: [m2] Copy the dependencies of a project in a custom plugin

2005-11-21 Thread Brett Porter
I'd have to look, but I think that is done by comparing ${project.artifacts} to ${project.dependencies} Cheers, Brett On 11/22/05, Wim Deblauwe [EMAIL PROTECTED] wrote: Is it also possible to only get the first-line dependencies? I notice the website can create a distintion between the direct

Re: [m2] Generating Source in Ant

2005-11-21 Thread Brett Porter
We're working on splitting them out, but for now all the issues are in MNG. So if you go there, and select Create new Issue from the top, it will preselect the project Maven 2 from the dropdown (or you can do that manually). On the second screen, select maven-antrun-plugin in the components and

Re: [M2] how to run a goal by specifying the plugin only - default goal?

2005-11-21 Thread Brett Porter
Clean is a special lifecycle phase. You can't really shorten it, though you can bind it to a lifecycle phase so it is run automatically and you never need to run it on the command line :) See: Introduction to the build lifecycle in the documentation - Brett On 11/22/05, puschteblume [EMAIL

Re: [M2] Impossible to use 1.5 sources in plugin?

2005-11-21 Thread Brett Porter
Thanks for this. It appears that way. Can you file an issue for us to look in to in 2.1? We should be able to use proper annotations in 1.5 too, hopefully qdox can mediate that. - Brett On 11/22/05, Jose Gonzalez Gomez [EMAIL PROTECTED] wrote: Hi there, I'm developing a plugin for Maven, and

Re: m1.1b2 SET MAVEN_OPTS=-XX:MaxPermSize=1024m doesn't work

2005-11-21 Thread Brett Porter
Where does the site fail? If it is inside something like javadoc, its probably because you need to change the javadoc memory settings, not the maven seetings. - Brett On 11/22/05, Antonyan, Tigran(GE Infrastructure) [EMAIL PROTECTED] wrote: Hi all I'm experiencing a problem with JVM heap size

Re: Build Error while creating project

2005-11-21 Thread Brett Porter
Try -U: there is a bug in 2.0 where the plugin gets stuck if it is not found the first time. - Brett On 11/22/05, Mordo, Aviran (EXP N-NANNATEK) [EMAIL PROTECTED] wrote: I'm having the same problem, I already have a project setup and maven can download all the other plugins, but if I want to

Re: confusing maven 2 dependency behavior

2005-11-21 Thread Brett Porter
Because junit-addons says it needs it: http://www.ibiblio.org/maven2/junit-addons/junit-addons/1.4/junit-addons-1.4.pom File a bug: http://jira.codehaus.org/browse/MEV On 11/22/05, Charlie Groves [EMAIL PROTECTED] wrote: Hi, I'm migrating some projects from maven 1 to 2. We have a dependency

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

2005-11-21 Thread Brett Porter
On 11/22/05, Lee Meador [EMAIL PROTECTED] wrote: Wes, I had the same problem with -DgeneratePom not doing anything. It's not released with this feature yet. - Brett - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

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

2005-11-21 Thread Brett Porter
On 11/22/05, David Jackman [EMAIL PROTECTED] wrote: Well, that certainly worked to install the POM in a second command. How far-fetched would it be to add a property to the install-file goal to copy the POM at the same time? This is definitely possible - would you like to file it? - Brett

Re: [M2] how to run a goal by specifying the plugin only - default goal?

2005-11-21 Thread puschteblume
Hi Brett Why it isn't defined in the lifecycle reference? I can't find any hint on this topic. Where it is defined? Heiko Brett Porter wrote: Clean is a special lifecycle phase. You can't really shorten it, though you can bind it to a lifecycle phase so it is run automatically and you

Re: [M2] how to run a goal by specifying the plugin only - default goal?

2005-11-21 Thread Brett Porter
clean isn't - we should add it. I'll file a bug. But this is not related to how you add goals to the lifecycle... - Brett On 11/22/05, puschteblume [EMAIL PROTECTED] wrote: Hi Brett Why it isn't defined in the lifecycle reference? I can't find any hint on this topic. Where it is defined?

Re: [M2] how to run a goal by specifying the plugin only - default goal?

2005-11-21 Thread puschteblume
Of course .. now I know :) Brett Porter wrote: clean isn't - we should add it. I'll file a bug. But this is not related to how you add goals to the lifecycle... - Brett On 11/22/05, puschteblume [EMAIL PROTECTED] wrote: Hi Brett Why it isn't defined in the lifecycle reference? I can't

Re: [m2] Is this correct behavior for optional dependency?

2005-11-21 Thread Carlos Sanchez
You are right, could you please file an issue and attach an use case where it doesn't work? On 11/21/05, David Jackman [EMAIL PROTECTED] wrote: Based on my reading of the docs and the mail archives, adding optionaltrue/optional to a dependency should affect other projects that depend on my

Re: [m2] Is this correct behavior for optional dependency?

2005-11-21 Thread Brett Porter
I think this may have been fixed in 2.0.1 - check JIRA for an existing issue first. On 11/22/05, David Jackman [EMAIL PROTECTED] wrote: Based on my reading of the docs and the mail archives, adding optionaltrue/optional to a dependency should affect other projects that depend on my project,

Re: How to disable transitive dependency?

2005-11-21 Thread Carlos Sanchez
The problem is that the pom can be improved to add some of them as optional. I'll solve that when solving http://jira.codehaus.org/browse/MEV-161. On 11/21/05, Eric Jacob [EMAIL PROTECTED] wrote: If you want to use all the Acegi's features, sure you need all these jars. But since I don't need

RE: variable references for site generation

2005-11-21 Thread John Allen
http://jira.codehaus.org/browse/MNG-661 provides a simple patch which provides parent and module links using the project URLs which as you correctly point out only work when the site is deployed. -Original Message- From: Brett Porter [mailto:[EMAIL PROTECTED] Sent: 21 November 2005

RE: [m2] Is this correct behavior for optional dependency?

2005-11-21 Thread David Jackman
I did do a little looking around for an issue, but didn't find one. Do you have any helpful terms to search on that would narrow the field a bit? -Original Message- From: Brett Porter [mailto:[EMAIL PROTECTED] Sent: Monday, November 21, 2005 2:45 PM To: Maven Users List Subject: Re:

Re: [m2] delicious bookmarks plugin comments

2005-11-21 Thread Brett Porter
Sounds cool, but also can't think of a use right now :) Most likely it would take the form of a report, listing bookmarks for a given tag... will give it some more thought as to whether that might be useful or not. - Brett On 11/22/05, Ashley Williams [EMAIL PROTECTED] wrote: (hammer looks for

Re: [m2] Is this correct behavior for optional dependency?

2005-11-21 Thread Brett Porter
I usually go to the 2.0.1 and use firefox's type-ahead find :) JIRA isn't easy to search quickly... but maybe MNG optional would do it. - Brett On 11/22/05, David Jackman [EMAIL PROTECTED] wrote: I did do a little looking around for an issue, but didn't find one. Do you have any helpful

RE: [mvn] using cactus with maven2

2005-11-21 Thread Vincent Massol
-Original Message- From: Alexandre Russel [mailto:[EMAIL PROTECTED] Sent: lundi 21 novembre 2005 13:37 To: Maven Users List Subject: Re: [mvn] using cactus with maven2 Vincent Massol a écrit : The recommendation right now (while waiting for a proper cactus m2 plugin) is to

Re: [m2] Copy the dependencies of a project in a custom plugin

2005-11-21 Thread Stephen Cowx
Hi Brett In regard to your second solution below: I tried it out, but I get a parse error when reading the POM unrecognised tag: 'dependency' I dont think the dependency tag is allowed within a plugin tag. Have I misunderstood your solution? Here is what I understood you to mean by include

RE: m1.1b2 SET MAVEN_OPTS=-XX:MaxPermSize=1024m doesn't work

2005-11-21 Thread Antonyan, Tigran\(GE Infrastructure\)
I set the javadoc memory as well (although in doesn't fail on javadoc) it fails on unit test (used to be the second time around, jcoverage (junit-report comes before jcoverage), but today it don't even get the junit-report anymore, I think that's because we had more unit tests checked in

Re: [m2] Copy the dependencies of a project in a custom plugin

2005-11-21 Thread Brett Porter
Sorry, it still needs an eclosing dependencies. - Brett On 11/22/05, Stephen Cowx [EMAIL PROTECTED] wrote: Hi Brett In regard to your second solution below: I tried it out, but I get a parse error when reading the POM unrecognised tag: 'dependency' I dont think the dependency tag is

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

2005-11-21 Thread David Jackman
Done: http://jira.codehaus.org/browse/MNG-1646 ..David.. -Original Message- From: Brett Porter [mailto:[EMAIL PROTECTED] Sent: Monday, November 21, 2005 2:09 PM To: Maven Users List Subject: Re: [m2] Installing 3rd Party Jars with POMs On 11/22/05, David Jackman [EMAIL PROTECTED]

Re: [m2] Copy the dependencies of a project in a custom plugin

2005-11-21 Thread Stephen Cowx
Thanks Brett That worked brilliantly. regards Stephen Brett Porter wrote: Sorry, it still needs an eclosing dependencies. - Brett On 11/22/05, Stephen Cowx [EMAIL PROTECTED] wrote: Hi Brett In regard to your second solution below: I tried it out, but I get a parse error when reading

optional ant replaceregexp task

2005-11-21 Thread Nathan Coast
Hi, having recently upgraded to maven 1.1-b2, I have been unable to get ant replaceregexp tasks working I have tried adding the dependencies to the oro regexp jars (I couldn't find the org.apache.tools.ant.util.regexp.Jdk14RegexpRegexp class in any jar) dependency

Re: optional ant replaceregexp task

2005-11-21 Thread Sachin Patel
I too am seeing the same problem. Nathan Coast wrote: Hi, having recently upgraded to maven 1.1-b2, I have been unable to get ant replaceregexp tasks working I have tried adding the dependencies to the oro regexp jars (I couldn't find the org.apache.tools.ant.util.regexp.Jdk14RegexpRegexp

Re: [m2] missing dependency features??

2005-11-21 Thread Chris Berry
Inline. Thanks, -- Chris On 11/20/05, Brett Porter [EMAIL PROTECTED] wrote: On 11/21/05, Chris Berry [EMAIL PROTECTED] wrote: Greetings, Seems that dependencies should provide two features they do not already; 1) the ability to explicitly specify the URL from which to download an

  1   2   >