Re: Using Mevenide on NetBeans 4.0 with multiprojects using multiple source directories per project

2004-09-09 Thread Milos Kleint
As I've already replied on the andromda's list, here's just the link to the filed jira issue: http://jira.codehaus.org/browse/MEVENIDE-93 Milos Philippe Monnet wrote: Today I decided to try out the new version of Mevenide for NetBeans 4.0 beta 1. It is a very cool plug-in: once you open the root

Re: Maven and JNLP plugin

2004-09-09 Thread Kevin S. Clarke
Hi, Yes, I will open an issue and probably submit a patch. I've changed it to work for me, but I need to look it over to make sure I haven't broken something else (and that I'm doing it correctly and not just in a way that gets the results I want). I'm also changing it to create different JNLP

Re: reference list of all pom.* properties?

2004-09-09 Thread Brett Porter
This is the most comprehensive one: http://cvs.apache.org/viewcvs.cgi/maven/src/java/org/apache/maven/project/Project.java?rev=1.99&view=markup On Thu, 9 Sep 2004 23:14:11 -0400, Springer, Ian P. <[EMAIL PROTECTED]> wrote: > Is there a reference available anywhere for all the pom.* properties > (

reference list of all pom.* properties?

2004-09-09 Thread Springer, Ian P.
Is there a reference available anywhere for all the pom.* properties (pom.artifactId, pom.currentVersion, etc..), as well as pom.* functions (pom.getPluginContext('maven-java-plugin'), pom.getDependency('junit'), etc..) that are defined by Maven? Thanks, Ian --

MavenIDE

2004-09-09 Thread Ricardo de Souza Moura
Is anybody using mavenide with eclipse to do the projects ? When I create a project, sample1 for sample, it create some folders: sample1 main/src/java main/src/test project.xml It works well if my project produce only one artifact, but what Can I do to use mavenIDE and my project produce

Re: easy way to fetch jar dependencies

2004-09-09 Thread James Mitchell
What's difficult about figuring out Struts dependencies? What version of Struts are you building with? http://cvs.apache.org/viewcvs.cgi/jakarta-struts/project.xml or check the build.xml -- James Mitchell Software Engineer / Open Source Evangelist EdgeTech, Inc. 678.910.8017 AIM: jmitchtx ---

Re: accessing os from maven?

2004-09-09 Thread dan tran
Check out the os properties available to your JVM http://java.sun.com/j2se/1.3/docs/api/java/lang/System.html#getProperties() properties available to JVM also avaiable to maven as well. -Dan On Thu, 09 Sep 2004 20:33:03 -0400, Adam Fisk <[EMAIL PROTECTED]> wrote: > Anyone know how to check th

accessing os from maven?

2004-09-09 Thread Adam Fisk
Anyone know how to check the operating system from Maven? I'm ultimately trying to report test results from different operating systems (a really important thing to do for widely deployed client apps), so I'd love any tips on how to do that cleanly if you've got 'em. Just accessing what OS Ma

Re: easy way to fetch jar dependencies

2004-09-09 Thread Pedro Salgado
On 10/9/04 1:20 am, "Brett Porter" <[EMAIL PROTECTED]> wrote: > not yet. We are currently developing maven 2 which already has this > functionality. If you need any help... feel free to ask. I was googling to know the packages dependencies... and I found "savant" it sure seems similar to mav

Re: easy way to fetch jar dependencies

2004-09-09 Thread Brett Porter
not yet. We are currently developing maven 2 which already has this functionality. - Brett On Fri, 10 Sep 2004 00:59:11 +0100, Pedro Salgado <[EMAIL PROTECTED]> wrote: > Hi to all! > > Is there any way to do this: > > - fetch struts jar > - fetch automatically all of struts dependencies?

easy way to fetch jar dependencies

2004-09-09 Thread Pedro Salgado
Hi to all! Is there any way to do this: - fetch struts jar - fetch automatically all of struts dependencies? (without the need of writing the dependencies myself)? I tried the "copy paste technique" but I only found few poms in order to copy the dependencies :( Pedro Salgado

Re: What about distributions at ibiblio?

2004-09-09 Thread Trygve Laugstøl
On Thu, Sep 09, 2004 at 08:58:38AM -0400, Thompson, Bryan B. wrote: > Can maven.repo.repository be added to in the POM? I.e., so that I can > distribute a POM that knows where it expects to find various artifacts > for our project rather than relying on people having to edit their own > build.prop

Re: Inherting project.properties

2004-09-09 Thread Brett Porter
For Maven 1.0, it is intended that all files tied to the project.xml are inherited (ie project.properties, build.properties and maven.xml). It will not go away in the future of POMv3. - Brett On Fri, 10 Sep 2004 00:04:01 +0200, Jörg Schaible <[EMAIL PROTECTED]> wrote: > Bruce Snyder wrote: > > >

Re: site:deploy & preserving permissions

2004-09-09 Thread Derek Greer
In case anyone else runs into this, after poking around in the jelly script I discovered there isn't a maven parameter for setting the mode. I ended up modifying the script to change all cgi files to executable. It would be cool if the site plugin could be modifi

Re: Inherting project.properties

2004-09-09 Thread Jörg Schaible
Bruce Snyder wrote: > This one time, at band camp, Kim Goings said: > > KG>If you extend your projects from a "master" parent project, it will > KG>also inherit project.properties from that parent. > KG> > KG>http://maven.apache.org/reference/project-descriptor.html#extend > > That only applies

Re: Inherting project.properties

2004-09-09 Thread dan tran
Please dont call it a bug!! it works well for me and I need it. It is better if we OOlized properties and goals. ie some properties/goals are marked as private -D On Thu, 9 Sep 2004 16:10:42 -0500, Kim Goings <[EMAIL PROTECTED]> wrote: > Indeed, it does. If it is a bug and goes away sometime in

Re: Inherting project.properties

2004-09-09 Thread Kim Goings
Indeed, it does. If it is a bug and goes away sometime in the future, I will feel much pain. Kim On Sep 9, 2004, at 3:03 PM, Felipe Leme wrote: Hi Bruce, From my experience, the inheritance applies to everything: maven.xml, build.properties and project.properties, besides the project.xml. I'm

RE: maven auto update plugin

2004-09-09 Thread Eric Pugh
I have a chunk of code and maven goal called "latestversion" that checks for newer versions of a specific plugin and notifies the user. I am pulling it out of the existing location and hope to commit it to maven-plugins/sandbox sometime next week. ERic > -Original Message- > From: Ryan S

Re: Inherting project.properties

2004-09-09 Thread Felipe Leme
Hi Bruce, >From my experience, the inheritance applies to everything: maven.xml, >build.properties and project.properties, besides the project.xml. I'm not sure though if that's on purpose or just a 'bug' - either way, that's a good candidate to a FAQ entry :-) -- Felipe On Thu, 9 Sep 2004

site:deploy & preserving permissions

2004-09-09 Thread Derek Greer
I have a perl cgi which I am trying to deploy with my maven site, but the cgi's permissions isn't being maintained. I'm using maven.site.tar.executable = gtar and would like to pass the "-p" argument to have it preserve the permissions. Is there a way to do that? Derek ---

Re: Inherting project.properties

2004-09-09 Thread Bruce Snyder
This one time, at band camp, Kim Goings said: KG>If you extend your projects from a "master" parent project, it will KG>also inherit project.properties from that parent. KG> KG>http://maven.apache.org/reference/project-descriptor.html#extend That only applies to the project descriptor (i.e. proje

Re: Inherting project.properties

2004-09-09 Thread Kim Goings
If you extend your projects from a "master" parent project, it will also inherit project.properties from that parent. http://maven.apache.org/reference/project-descriptor.html#extend Kim On Sep 9, 2004, at 12:40 PM, Helck, Christopher wrote: I have multiple projects and I'd like them to inherit f

Inherting project.properties

2004-09-09 Thread Helck, Christopher
I have multiple projects and I'd like them to inherit from a common project.properties. Is there a way to do this? Entities? Thanks, C. Helck The information contained in this e-mail is confidential. This e-mail is intended only for the stated addressee. If you are not an addressee, you must n

RE: checkout-project error=2

2004-09-09 Thread Liu, Zhihai
most likely it means that cvs executable is not in path. -Original Message- From: Henderson, Jerry L [CC] [mailto:[EMAIL PROTECTED] Sent: Thursday, September 09, 2004 1:57 PM To: Maven Users List Subject: scm:checkout-project error=2 Help. When I try to run maven scm:checkout-project to

plugin groupId

2004-09-09 Thread Nathan Coast
Hi after loading the pom for a plugin hosted at maven (e.g. maven-jar-plugin) the groupId returns 'maven-jar-plugin' when I look at the plugin's project.xml, it actually belongs to the 'maven' group. I guess the problem is due to the fact that core plugins extend ../plugin-parent/project.xml I

scm:checkout-project error=2

2004-09-09 Thread Henderson, Jerry L [CC]
Help. When I try to run maven scm:checkout-project to download any of the maven projects I get a "error=2" For example: maven scm:checkout-project -Dmaven.scm.method=cvs -Dmaven.scm.cvs.module=goals-grabber -Dmaven.scm.cvs.root=:pserver:[EMAIL PROTECTED]:/home/ projects/mevenide/scm -Dmaven.sc

loading the pom for a plugin

2004-09-09 Thread Nathan Coast
Hi, from a recent post I found out how to load a pom into a variable, what I'm trying to do now is to load the pom of an installed plugin. unfortunately I only know the artifactId of the plugin and not the installed version number. I have found a workaround to locate the project's descriptor.

maven auto update plugin

2004-09-09 Thread Ryan Sonnek
Does anyone out there know of a plugin that will search for updated versions of installed plugins? I've been thinking about creating one and didn't want to reinvent the wheel. It seems like this plugin could be quite useful since plugins are released on different schedules than the maven distr

Re: site:sshdeploy

2004-09-09 Thread Per Abich
I have these lines in my build.properties: maven.ssh.executable=c:/programme/putty/plink maven.scp.executable=c:/programme/putty/pscp And the putty agent "pagant" is running. Putty logs in via pub-key. If you have putty working with pub-key, then this should work. Per On Wed, 8 Sep 2004 18:29:

RE: How to schedule a nightly build in Maven

2004-09-09 Thread STRAYER, JON (SBCSI)
> CruiseControl seems like a good choice. It however requires > having Ant build scripts, which than again makes Maven > unnecessary in this scenario (nightly build system)..? Or am > I wrong here? CruiseControl now has a Maven builder. http://cruisecontrol.sourceforge.net/main/configxml.html

Re: site:deploy

2004-09-09 Thread Dion Gillard
Can you set the site directory in a pom that the subprojects extend? On Thu, 9 Sep 2004 06:39:39 -0700 (PDT), jeff mutonho <[EMAIL PROTECTED]> wrote: > Hi guys > If I wanna do a site:deploy for all my subprojects , do i have to add >in each of the subproject's project.xml? and then create t

Re: Dependency of type property

2004-09-09 Thread James Mitchell
What do you mean "instead of copying"? Do you mean having a common set of properties that get appended to each subprojects existing ApplicationResources.properties? -- James Mitchell Software Engineer / Open Source Evangelist EdgeTech, Inc. 678.910.8017 AIM: jmitchtx - Original Message ---

RE: Ref. : RE: How to schedule a nightly build in Maven

2004-09-09 Thread Eric Pugh
That is a great idea.. Can you send in a patch? Eric > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > Sent: Thursday, September 09, 2004 4:05 PM > To: [EMAIL PROTECTED] > Subject: Ref. : RE: How to schedule a nightly build in Maven > > > > Hi all > > > >

Dependency of type property

2004-09-09 Thread Marco Tedone
Hi, is there a way to declare a dependency of type 'property'? The reason is that it would be usefull to have a dependency of type property when using Struts (and I think not only) for MessageResource bundles. Basically a company may want to use always the same type of labels (already international

Re: How to schedule a nightly build in Maven

2004-09-09 Thread Emmanuel Venisse
The cruise control maven plugin generate the cruise control config file. Emmanuel - Original Message - From: <[EMAIL PROTECTED]> To: "Maven Users List" <[EMAIL PROTECTED]> Sent: Thursday, September 09, 2004 3:49 PM Subject: RE: How to schedule a nightly build in Maven > > Hi'ya! > > At

Réf. : RE: How to schedule a nightly build in Maven

2004-09-09 Thread julien . kirch
Hi all I know it's a "just contribute" remark but it's at least the seventh time I saw the question on the list, perhaps a small page on the site in the "Getting Started" would help ? Julien This message and any attachments (the "message") is intended solely for the addre

RE: setting up a maven public repository.

2004-09-09 Thread Carlos Sanchez
> -Original Message- > From: Thompson, Bryan B. [mailto:[EMAIL PROTECTED] > Sent: Thursday, September 09, 2004 2:59 PM > To: Maven Users List > Subject: RE: setting up a maven public repository. > > Carlos, > > Is the structure of the repository is just the same as the > local reposi

RE: How to schedule a nightly build in Maven

2004-09-09 Thread Liu, Zhihai
You can use MavenBuilder in CC like this. I got this tip from this list. -Original Message- From: Dinko Hadzic [mailto:[EMAIL PROTECTED] Sent: Thursday, September 09, 2004 9:47 AM To: Maven Users List Subject

RE: How to schedule a nightly build in Maven

2004-09-09 Thread jan-helge . bergesen
Hi'ya! At our company I've got a build server running CruiseControl over Maven without any Ant. It just uses the Mavenbuilder plugin - works like a charm. // Jan-Helge Bergesen, TMN Dept. AXXESSIT ASA | http://www.axxessit.no - Reply to All the Original Message - Author: "Dinko Had

RE: What about distributions at ibiblio?

2004-09-09 Thread Carlos Sanchez
No, add your repo to maven.repo.remote in project.properties and distribute it with your pom. Regards Carlos Sanchez A Coruña, Spain http://www.jroller.com/page/carlossg/Weblog Oness Project http://oness.sourceforge.net > -Original Message- > From: Thompson, Bryan B. [mailto:[EMAIL PRO

Re: Eclipse Plugin

2004-09-09 Thread Christian Mouttet
Thank's! Am Donnerstag, 9. September 2004 15:30 schrieb [EMAIL PROTECTED]: > It is not a real problem if you don't have cactus test. > > But you can to install the cactus-maven-plugin : > http://jakarta.apache.org/cactus/integration/maven/installing.html > > Nicolas,

RE: How to schedule a nightly build in Maven

2004-09-09 Thread Dinko Hadzic
CruiseControl seems like a good choice. It however requires having Ant build scripts, which than again makes Maven unnecessary in this scenario (nightly build system)..? Or am I wrong here? I see that Maven has a plugin for CruiseControl and vice versa, what are the potential advantages of integra

site:deploy

2004-09-09 Thread jeff mutonho
Hi guys If I wanna do a site:deploy for all my subprojects , do i have to add in each of the subproject's project.xml? and then create the deploy directories manually ? jeff mutonho - Do you Yahoo!? New and Improved Yahoo! Mail - 100MB free

Re: Eclipse Plugin

2004-09-09 Thread Nicolas . CHALUMEAU
It is not a real problem if you don't have cactus test. But you can to install the cactus-maven-plugin : http://jakarta.apache.org/cactus/integration/maven/installing.html Nicolas, Christian Mouttet <[EMAIL PROTECTED]> 09/09/2004 15:23 Veuillez répondre à "Maven Users List" Pour :

Eclipse Plugin

2004-09-09 Thread Christian Mouttet
Hi, when I run maven eclipse:generate-classpath I do get this output: __ __ | \/ |__ _Apache__ ___ | |\/| / _` \ V / -_) ' \ ~ intelligent projects ~ |_| |_\__,_|\_/\___|_||_| v. 1.0 Tag library requested that is not present: 'cactus' in plugin: 'maven-eclipse-plugin-1.8' build:start: ec

RE: setting up a maven public repository.

2004-09-09 Thread Thompson, Bryan B.
Carlos, Is the structure of the repository is just the same as the local repository? Is it exposed by HTTP or by some other protocol? I've been searching for documentation on this but I can't seem to find anything. Is there someplace where all of this is spelled out? -bryan -Original Messa

RE: What about distributions at ibiblio?

2004-09-09 Thread Thompson, Bryan B.
Can maven.repo.repository be added to in the POM? I.e., so that I can distribute a POM that knows where it expects to find various artifacts for our project rather than relying on people having to edit their own build.properties file? Thanks, -bryan -Original Message- From: Carlos Sanch

RE: How to schedule a nightly build in Maven

2004-09-09 Thread STRAYER, JON (SBCSI)
We use CruiseControl for this. > -Original Message- > From: Dinko Hadzic [mailto:[EMAIL PROTECTED] > Sent: Thursday, September 09, 2004 7:22 AM > To: [EMAIL PROTECTED] > Subject: How to schedule a nightly build in Maven > > > Hi > > > > Is it possible to schedule a periodical nightl

How to schedule a nightly build in Maven

2004-09-09 Thread Dinko Hadzic
Hi Is it possible to schedule a periodical nightly build of a J2EE project with Maven, and what is the best approach? Could you please give me some hints to get started? Is CruiseControl the tool I should be looking at, or does this functionality also exist within Maven? Thanks \Dinko

Re: Writing documentation with Maven

2004-09-09 Thread Andreas Guther
1. What format do you use to write documentation? A. xdoc 4. What tool do you use to write the docs? A. notepad / vi and similar Eclipse and XmlBuddy 3. Would you like to use another format instead of answered in (1) and why? docBook, since more layout features available. Regards, Andrea

Using Mevenide on NetBeans 4.0 with multiprojects using multiple source directories per project

2004-09-09 Thread Philippe Monnet
Today I decided to try out the new version of Mevenide for NetBeans 4.0 beta 1. It is a very cool plug-in: once you open the root project, Mevenide automatically parses the subprojects and "mounts" them in the IDE and sets the classpaths based on declared dependencies. This greatly makes life easie

Re: Running strutsconfigxml subtask within the xdoclet:webdoclet from Maven

2004-09-09 Thread Marco Tedone
Yes! I added the dependency and it works. However, Pierre, for your reference, on ibiblio the 1.2.1 version is not there. I've used 1.2 and it seems it works nicely - Original Message - From: "Pierre-Yves Chauveau" <[EMAIL PROTECTED]> To: "Maven Users List" <[EMAIL PROTECTED]> Sent: Thur

RE: java:jar-resource copy failure

2004-09-09 Thread Andreas.Ebbert
Hi, > -Original Message- > From: ext Brett Porter [mailto:[EMAIL PROTECTED] > target path should just be META-INF. It is relative to > maven.build.dest. now that you mention it - it's so obvious!!! Interesting, that it worked with RC1, which I was using previously. > You can file a bu

SOLVED:Re:Ref.:Re:Copying some resources to the same directory of compiled classes

2004-09-09 Thread jeff mutonho
This did it /com/mtk/support/logging jeff mutonho <[EMAIL PROTECTED]> wrote:Ok let me break it down further: This is how the Support_Logging subproject looks like /Support_Logging/com/mtk/support/logging |__LogConstants.java |__LogLevels.java |__BusMsgs.xml |__GeoMsgs.xml and what I want to ge

Re: java:jar-resource copy failure

2004-09-09 Thread jeff mutonho
Hi Andreas The problem is ${maven.build.dest}.Take it out and substitute with the the actual path from /target/classes.../META-INF.I had the same problem and that's how i got mine to work.If you check my post about having resources copied the same directory as the classes. jeff mutonho [EMAI

RE: Running strutsconfigxml subtask within the xdoclet:webdoclet from Maven

2004-09-09 Thread Pierre-Yves Chauveau
So you're missing the apache module one : xdoclet xdoclet-apache-module 1.2.1 http://xdoclet.sourceforge.net -Message d'origine- De : Marco Tedone [mailto:[EMAIL

Re: Running strutsconfigxml subtask within the xdoclet:webdoclet from Maven

2004-09-09 Thread Marco Tedone
These are the xdoclet dependencies (declared in the parent project): xdoclet xdoclet 1.2 xdoclet xdoclet-ejb-module 1.2 http://xdoclet.sf.net/ xjavadoc xjavadoc 1.0.2 http://xdoclet.sf.net/ xdoclet xdoclet-jmx-module 1.2 http://xdoclet.sf.net/ xdoclet xdoclet-web-module 1.2 http://xd

Re: Running strutsconfigxml subtask within the xdoclet:webdoclet from Maven

2004-09-09 Thread Marco Tedone
Yes, I've changed them (still nothing) :( - Original Message - From: "M.-Leander Reimer" <[EMAIL PROTECTED]> To: "Maven Users List" <[EMAIL PROTECTED]> Sent: Thursday, September 09, 2004 11:02 AM Subject: Re: Running strutsconfigxml subtask within the xdoclet:webdoclet from Maven > And I

Re: Running strutsconfigxml subtask within the xdoclet:webdoclet from Maven

2004-09-09 Thread Mark Lowe
Have you included the xdoclet-apache-module stuff in your dependencies? On 9 Sep 2004, at 11:25, Marco Tedone wrote: Hi, I've got the following pregoal in maven.xml which, you know better than me, executes webdoclet before running the war goal. The web.xml gets generated, ok. Now I want to g

Re: Running strutsconfigxml subtask within the xdoclet:webdoclet from Maven

2004-09-09 Thread M.-Leander Reimer
And I think 2 of your properties are incorrect: maven.xdoclet.webdoclet.strutsconfigxml.0.validatexml=true maven.xdoclet.webdoclet.strutsconfigxml.0.version=1.1 should be maven.xdoclet.webdoclet.strutsconfigxml.0.validateXML=true maven.xdoclet.webdoclet.strutsconfigxml.0.Version=1.1 Leander Pierre-

RE: Running strutsconfigxml subtask within the xdoclet:webdoclet from Maven

2004-09-09 Thread Pierre-Yves Chauveau
Did you put the dependency of the apache xdoclet module in your project.xml. If not, nothing happen and you won't know about that it's missing :-( Pierre-Yves. -Message d'origine- De : Marco Tedone [mailto:[EMAIL PROTECTED] Envoyé : jeudi 9 septembre 2004 11:26 À : Maven-users Objet : Run

Running strutsconfigxml subtask within the xdoclet:webdoclet from Maven

2004-09-09 Thread Marco Tedone
Hi, I've got the following pregoal in maven.xml which, you know better than me, executes webdoclet before running the war goal. The web.xml gets generated, ok. Now I want to generate also the struts-related configuration files. From XDoclet I learn that there is a nested element for , tha

Re: Maven and JNLP plugin

2004-09-09 Thread Emmanuel Venisse
OK, I think we have a bug. The jardiff mode convert all non-snapshot artefact to dependencyName__VdependencyVersion. So, only snapshot jar must be put into the version.xml file when you use the jardiff mode. Can you open an issue (http://jira.codehaus.org/browse/MPJNLP) and eventually purpose a pa

Re: switch compiler debug on/off in Java

2004-09-09 Thread Emmanuel Venisse
Hi, Try this code : maven.compile.debug=${debugMode} Emmanuel - Original Message - From: "Gunter Matella" <[EMAIL PROTECTED]> To: "Maven Users List" <[EMAIL PROTECTED]> Sent: Thursday, September 09, 2004 10:12 AM Subject: switch compiler debug on/off in Java > He

Re:Ref.:Re:Copying some resources to the same directory of compiled classes

2004-09-09 Thread jeff mutonho
Ok let me break it down further: This is how the Support_Logging subproject looks like /Support_Logging/com/mtk/support/logging |__LogConstants.java |__LogLevels.java

switch compiler debug on/off in Java

2004-09-09 Thread Gunter Matella
Hello all, can anybody give me a hint, how to sitwch on off the generation of debugging code using the java compiler ? I have written a small goal to create release output (debug = on seems to be the default behavior): maven.compile.debug=${maven.compile.debug} But it seem