Re: Sample EJB Project Using JBoss and Maven?

2004-01-27 Thread diongillard
Quoting [EMAIL PROTECTED]: > BUILD FAILED > File.. file:/c:/workspace/webshop/Webshop-Beans/ > Element... attainGoal > Line.. 18 > Column 41 > No goal [xdoclet:ejbdoclet] > Total time: 11 seconds > Finished at: Tue Jan 27 17:36:50 PST 2004 Do you have the xdoclet plugin installed? --

RE: Using maven for a project with multiple dependencies.

2004-01-27 Thread Heritier Arnaud
You need to do is to install (copy) all jars of the 5 others projects in your local repository (or in a local repository for your company). Then in your new project you can use dependencies with the others. You only need to define how to update the old projects jars (manually, ftp, ) Arnaud.

RE: plugin to deploy plugins ?

2004-01-27 Thread Heritier Arnaud
yes it is the plugin plugin : http://maven.apache.org/reference/plugins/plugin/goals.html -Message d'origine- De : Stoffels, Ralf (FWI-AW2) [mailto:[EMAIL PROTECTED] Envoyé : mardi 27 janvier 2004 12:51 À : '[EMAIL PROTECTED]' Objet : plugin to deploy plugins ? Hi, I believe that it i

Re: Sample EJB Project Using JBoss and Maven?

2004-01-27 Thread conradwt
$ maven clean jar jar:install __ __ | \/ |__ _Apache__ ___ | |\/| / _` \ V / -_) ' \ ~ intelligent projects ~ |_| |_\__,_|\_/\___|_||_| v. 1.0-rc1-SNAPSHOT Hi, I have tried the webshop but I'm unable to get past the first command. BEGIN TRANSCRIPT: MY-MACHINE ~/workspace/webshop/Webshop-Be

RE: plugin to deploy plugins ?

2004-01-27 Thread Smith, Matt (MAN-Corporate)
Hello, I use the jar plugin to jar it and then use the artifact tag library to deploy it. hth Matt -Original Message- From: Stoffels, Ralf (FWI-AW2) [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 27, 2004 6:51 AM To: '[EMAIL PROTECTED]' Subject: plugin to deploy

RE: [scm] Problem Running scm:bootstrap-project

2004-01-27 Thread Brett Porter
Dsoes maven.conf.dir include ${basedir}? It looks like an additional "edog" path is being added. - Brett > -Original Message- > From: Norm Deane [mailto:[EMAIL PROTECTED] > Sent: Wednesday, 28 January 2004 3:22 AM > To: Maven Users List > Subject: [scm] Problem Running scm:bootstrap-proj

Re: aspectj injars

2004-01-27 Thread Charles N. Harvey III
Seriously though... Anybody know how to do this? Project A creates a jar - projectA.jar Project B wants to weave into projectA.jar Where do I list this? What property do I set in project.properties or project.xml to make this happen? Two months ago I hacked apart the aspectj plugin.jelly and th

Re: Classpath within a plugin?

2004-01-27 Thread Eric Giguere
hehe, nice. thx Chad. I'm currently writing a plugin and I'll also need to execute a class with the dependency classpath. Very helpfull :) Eric. Chad Brandon wrote: Alex, Eric almost got it right, but it should be "plugin.getDependencyClasspath()" instead of "pom.getDependencyClasspath()" if

Can I copy the src code from all sub projects into the parent project?

2004-01-27 Thread Brian Burridge
I want to run Simian on all the code in my subprojects from the parent. I see that simian only looks at the parent's src directory, so perhaps I need to copy all the subprojects src code into that src code before simian runs. Does anyone have any sample code of how to do that? Brian N. Burridge

Retrieving inner elements as text

2004-01-27 Thread Christopher W. Farnham
Is there some way that I can populate an object field with a String that looks like this: 'some text bold textitalic text more text'. Put another way, I'd like to grab the text inside the title elements with its markup and populate a String property on my Java object. some text bold textitalic t

Re: the project.properties file

2004-01-27 Thread Sean Kelly
AFAIK there is no special syntax. It will be inherited automatically. Automatically? Meaning if my project.xml has /usr/local/share/java/maven/master/project-master.xml Then maven will look for /usr/local/share/java/maven/master/project.properties Automatically? Or does it look soley f

Re: the project.properties file

2004-01-27 Thread Chad Brandon
Great! That's one thing that is kind of a pain in 1.0-RC1. Thanks, Chad - Original Message - From: "Michal Maczka" <[EMAIL PROTECTED]> To: "Maven Users List" <[EMAIL PROTECTED]> Sent: Tuesday, January 27, 2004 1:35 PM Subject: RE: the project.properties file > > > > -Original

RE: the project.properties file

2004-01-27 Thread Michal Maczka
> -Original Message- > From: Chad Brandon [mailto:[EMAIL PROTECTED] > Sent: Tuesday, January 27, 2004 4:05 PM > To: Maven Users List > Subject: Re: the project.properties file > > > Is it in 1.1 in CVS? If so, whats the syntax to use to extend the > properties? > AFAIK there is no sp

Re: Classpath within a plugin?

2004-01-27 Thread Chad Brandon
Alex, Eric almost got it right, but it should be "plugin.getDependencyClasspath()" instead of "pom.getDependencyClasspath()" if you're within a plugin. Or you can include a single dependency at a time: "plugin:getDependencyPath("groupId:artifactId")". Chad - Original Message - From: "Er

Re: Classpath within a plugin?

2004-01-27 Thread Eric Giguere
Hi Alex Did you try using this call : pom.getDependencyClasspath() ? By embedding this in an ant tag, you can pass it classpath info. ... ... Hope it helps, I'm not sure though. My example is made in a maven.xml file of a project, not from a plugin but still...

RE: Multiproject Cactus Plugin

2004-01-27 Thread Tim Chen
Thanks Vincent I'll give it a try :) Tim Chen [EMAIL PROTECTED] -Original Message- From: Vincent Massol [mailto:[EMAIL PROTECTED] Sent: Monday, January 26, 2004 7:42 AM To: 'Maven Users List' Cc: [EMAIL PROTECTED] Subject: RE: Multiproject Cactus Plugin Hi Tim, You're right. I'm not

[scm] Problem Running scm:bootstrap-project

2004-01-27 Thread Norm Deane
I'm trying to get the scm:bootstrap-project working and am running into a problem. I'm running 'maven scm:boostrap-project -Dmaven.scm.cvs.module=edog' from c:\projects\crap\scm. The cvs checkout completes successfully (creating c:\projects\crap\scm\edog) but when it tries to run my bootstrap go

Using maven for a project with multiple dependencies.

2004-01-27 Thread Dmitriy Yuriev
Greetings. I am starting a new project and would like to use maven for the development process (my compliments to its creators and all committers). One obstacle I am facing is that the code for the new project will be dependent upon several (up to 5) other projects and builds for those projects

Re: the project.properties file

2004-01-27 Thread Chad Brandon
Is it in 1.1 in CVS? If so, whats the syntax to use to extend the properties? Thanks, Chad - Original Message - From: "Emmanuel Venisse" <[EMAIL PROTECTED]> To: "Maven Users List" <[EMAIL PROTECTED]> Sent: Tuesday, January 27, 2004 9:50 AM Subject: Re: the project.properties file >

Re: [FOURTH TIME] Cannot run the "site" goal

2004-01-27 Thread Marco Tedone
No, I didn't. I created a directory structure following the suggestions on the Maven site, and then I generated the artifacts and the site. Marco - Original Message - From: "Charles Sabourdin" <[EMAIL PROTECTED]> To: "Maven Users List" <[EMAIL PROTECTED]> Sent: Monday, January 26, 2004 10

Re: the project.properties file

2004-01-27 Thread Emmanuel Venisse
Yes, in the next version. - Original Message - From: "Sean Kelly" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, January 27, 2004 3:47 PM Subject: the project.properties file > A subproject can use the in its project.xml to inherit > information from another project.xml f

the project.properties file

2004-01-27 Thread Sean Kelly
A subproject can use the in its project.xml to inherit information from another project.xml file. However, it seems not all project knowledge is contained in the Project Object Model. Some of that resides in the project.properties (mostly look-and-feel things). Is there a way to the projec

Re: [FOURTH TIME] Cannot run the "site" goal

2004-01-27 Thread Charles-Alexandre Sabourdin
So i suggest that you create an empty project using maven -Dpackage=com.mycompany.app genapp and try to generate your site form this project. Base on that, you would be able to say if your struture or maven is wrong. I also sugest that you check you project.xml fil and remove all the report tag

Re: plugin to deploy plugins ?

2004-01-27 Thread Emmanuel Venisse
You can see at "plugin" plugin. It package plugin and deploy it http://maven.apache.org/reference/plugins/plugin/ - Original Message - From: "Stoffels, Ralf (FWI-AW2)" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, January 27, 2004 12:51 PM Subject: plugin to deploy plugins ?

plugin to deploy plugins ?

2004-01-27 Thread Stoffels, Ralf (FWI-AW2)
Hi, I believe that it is very obvious, but I miss it: Is there a plugin or tag library to jar a self-written plugin and deploy it as a maven plugin ? Ralf - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-m

Re: [FOURTH TIME] Cannot run the "site" goal

2004-01-27 Thread Marco Tedone
Not yet, only when I'll be able to build Maven from the source. At the moment, I'm downloading the maven-plugins CVS. Marco - Original Message - From: "Arnaud Heritier" <[EMAIL PROTECTED]> To: "'Maven Users List'" <[EMAIL PROTECTED]> Sent: Monday, January 26, 2004 11:05 PM Subject: RE: [F

Re: [FOURTH TIME] Cannot run the "site" goal

2004-01-27 Thread Marco Tedone
Already done. - Original Message - From: "Brett Porter" <[EMAIL PROTECTED]> To: "'Marco Tedone'" <[EMAIL PROTECTED]>; "Maven Users List" <[EMAIL PROTECTED]> Sent: Monday, January 26, 2004 10:00 PM Subject: RE: [FOURTH TIME] Cannot run the "site" goal You are using a clean released versio

Re: Maven Presentation For Maven and Developers?

2004-01-27 Thread Patrick Chanezon
Hi Conrad, here's the "Further reading" section we have on our internal wiki site at Sun. Vincent Massol's preso is my personal favorite preso about Maven. P@ Further Reading Vincent Massol's excellent presentation Building J2EE projects with Maven It explains more complex topics like t

e-mails are slow

2004-01-27 Thread Arnaud Heritier
Hi all, Is it normal that there are several hours between the moment when I post in the mailing list and the moment when I receive the mail ? Is it the same thing for everybody ??? Arnaud.

How to invoke and wait for multiple threads?

2004-01-27 Thread Jefferson K. French
In one of my goals I'm trying to exec multiple copies of a program that will send test data to my server at the same time. I plan to invoke the program once for each name in a property list, using that name to determine where to find the data. I want to wait for all copies of the program to finish