preferred workflow j2ee project: maven reactor or multiproject goal?

2004-02-24 Thread Johan Andries
Hello, I've been reading through the Maven wiki today and noticed that on the http://wiki.codehaus.org/maven/CreatingJ2eeApplications page, the multiproject goal is used for artifact generation. I suppose today's specific workflow for j2ee projects (define interfaces + meta tags, code

build time

2004-02-24 Thread thorsten maus
hi guys .. im actually having a multiproject with 4 subproject ... for each subproject the ejbdoclet as well as the hibernatedoclet ist working .. although not needed for each ... the altogether build time is about 4-5 minutes is there any way to speed the build process up ???

[Repost] no jbosssx-client.jar on iBiblio

2004-02-24 Thread nicolas De Loof
Hi all, I'm looking for Jboss client jars on ibiblio. I don't find the jBosssx-client-3.2.1.jar (jBoss security AFAIK). Do I need to use the jbossall-client.jar (1.3MB !) or can someone upload it on ibilio ? As jBoos 3.2.3 is the current stable version, can someone upload jars for this jBoss

Re: build time

2004-02-24 Thread Kevin Hagel
http://ant.apache.org/manual/CoreTasks/uptodate.html I use ant's uptodate to see if I need to rebuild anything in particular. When our project was in its early days there wasn't so much to build and it seemed like overkill, but after a while when things really bloated it made a big difference

Re: PMD Report processing 0 files.

2004-02-24 Thread kimbuba
Hello Emmanuel. I tried from the official binary release. Are any fix? thnx Emmanuel Venisse [EMAIL PROTECTED] ha scritto nel messaggio news:[EMAIL PROTECTED] The correct branch for Maven is MAVEN-1_0-BRANCH and not HEAD Emmanuel - Original Message - From: kimbuba [EMAIL

RE: external jar files ...

2004-02-24 Thread Gregory Joseph
If you want to give it one more try, maybe we can help and eventually that would also help improve the docs? g -Original Message- From: Dave Raymer [mailto:[EMAIL PROTECTED] Sent: lundi 23 fvrier 2004 23:22 To: Maven Users List Subject: RE: external jar files ... Greg, I went through

Re: external jar files ...

2004-02-24 Thread Kevin Hagel
In your local maven repository create a directory, call it example for this example. That's $MAVEN_HOME/repository/example create a subdirectory called jars, just like all the other directories and stash example.jar in it $MAVEN_HOME/repository/example/jars/example.jar In your project.xml:

Re: external jar files ...

2004-02-24 Thread Kevin Hagel
Oops, rather than $MAVEN_HOME use whatever directory contains your repository, $MAVEN_HOME_LOCAL Kevin Hagel wrote: In your local maven repository create a directory, call it example for this example. That's $MAVEN_HOME/repository/example create a subdirectory called jars, just like all the

Re: [Repost] no jbosssx-client.jar on iBiblio

2004-02-24 Thread Emmanuel Venisse
I uploaded jboss client jars (3.2.3). Emmanuel - Original Message - From: nicolas De Loof [EMAIL PROTECTED] To: Maven Users List [EMAIL PROTECTED] Sent: Tuesday, February 24, 2004 11:21 AM Subject: [Repost] no jbosssx-client.jar on iBiblio Hi all, I'm looking for Jboss client jars

Re: preferred workflow j2ee project: maven reactor or multiproject goal?

2004-02-24 Thread Jim Crossley
I think the multiproject goal uses the reactor internally. You could probably use either, but the multiproject stuff *should* be simpler. Jim Johan Andries [EMAIL PROTECTED] writes: Hello, I've been reading through the Maven wiki today and noticed that on the

Can Maven use dashes in variable interpolation?

2004-02-24 Thread [EMAIL PROTECTED]
I have a build.properties file with various properties setup such as: example-src.dir=example-src In my maven.xml file I have: goal name=my-goal mkdir dir=${example-src.dir}/ /goal When I invoke maven with maven my-goal it creates a 0 directory instead of an example-src directory. If I

Re: Can Maven use dashes in variable interpolation?

2004-02-24 Thread [EMAIL PROTECTED]
BTW, I am using Maven 1.0-rc1 on Windows 2000. Thanks. --- [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: I have a build.properties file with various properties setup such as: example-src.dir=example-src In my maven.xml file I have: goal name=my-goal mkdir dir=${example-src.dir}/

RE: external jar files ...

2004-02-24 Thread Gregory Joseph
I think Dave managed to do that (or better, in a distant repository), here I was talking about helping him with the jar override feature. -Original Message- From: Kevin Hagel [mailto:[EMAIL PROTECTED] Sent: mardi 24 fvrier 2004 12:52 To: Maven Users List Subject: Re: external jar files

Re: [Repost] no jbosssx-client.jar on iBiblio

2004-02-24 Thread nicolas De Loof
Thanks a lot. Emmanuel Venisse a écrit : I uploaded jboss client jars (3.2.3). Emmanuel - Original Message - From: nicolas De Loof [EMAIL PROTECTED] To: Maven Users List [EMAIL PROTECTED] Sent: Tuesday, February 24, 2004 11:21 AM Subject: [Repost] no jbosssx-client.jar on iBiblio

RE: setting plugin properties in maven.xml

2004-02-24 Thread John Casey
Could you create four sub-projects, each with its own source directory, then only put the ejb-jar.xml file for each in its respective sourcedir...then, you could have a preGoal or something to add the base [real] EJB sources to the maven.compile.src.set? I'm only guessing, because I can't even

jar jboss-service.xml

2004-02-24 Thread thorsten maus
hi there .. im working using the multiproject approach .. my hibernate-jar subrproject creates a jar file containing the hibernate classes as well as the mapping files .. i also added the properties for xdoclet to create the hibernate jboss-service.xml file ... BUT .. how do i get this file

RE: setting plugin properties in maven.xml

2004-02-24 Thread dion
Why can't you simply post process the ejb jar generated by Maven four times each with a new descriptor? -- dIon Gillard, Multitask Consulting [EMAIL PROTECTED] wrote on 24/02/2004 05:55:45 PM: Sorry to bother you again, please let me know at least, why nobody cares to reply to me. Is the

Re: Can Maven use dashes in variable interpolation?

2004-02-24 Thread dion
It's a known feechur. -- dIon Gillard, Multitask Consulting [EMAIL PROTECTED] [EMAIL PROTECTED] wrote on 25/02/2004 12:31:51 AM: BTW, I am using Maven 1.0-rc1 on Windows 2000. Thanks. --- [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: I have a build.properties file with various

How do I include multiple java source directories in Maven?

2004-02-24 Thread [EMAIL PROTECTED]
I am using XDoclet with Maven and when XDoclet generates additional java source files it puts those in a separate directory. How do I make Maven use multiple source directories for compilation using the java:compile goal? Thanks. __ Do you Yahoo!? Yahoo! Mail

Re: How do I include multiple java source directories in Maven?

2004-02-24 Thread Johan Andries
Hello, AFAIK the only solution to specify multiple source dirs which is available at the moment can be found at: http://wiki.codehaus.org/maven/FrequentlyAskedQuestions#head-7545bdc005f855e 6b2009275529746f011a9ebcd. Also have a peek at http://wiki.codehaus.org/maven/CreatingJ2eeApplications.

RE: How do I include multiple java source directories in Maven?

2004-02-24 Thread Swierczek, David (MED)
Here's one way that I include multiple directories (in maven.xml): !-- + Include tool and systemtest directories when compiling tests +===

Re: How do I include multiple java source directories in Maven?

2004-02-24 Thread [EMAIL PROTECTED]
Thanks everyone for their help. Although, it sure would be nice if we could simply do something like the following within the project.xml file: build sourceDirectories sourceDirectorydir1/sourceDirectory sourceDirectorydir2/sourceDirectory /sourceDirectories /build Also, where can I

Where can I get info about Maven tasks and goals?

2004-02-24 Thread [EMAIL PROTECTED]
Where can I find information on Maven tasks like maven:addPath/? I have not seen any documentation about these tasks available to maven. __ Do you Yahoo!? Yahoo! Mail SpamGuard - Read only the mail you want. http://antispam.yahoo.com/tools

Re: How do I include multiple java source directories in Maven?

2004-02-24 Thread [EMAIL PROTECTED]
OS: Windows 2000 Maven: 1.0-rc1 I have tried the addPath/ task inside maven.xml, but it does not work. What am I doing wrong? maven.xml: preGoal name=java:compile path id=src.java.compile.src.set location=${src.java.dir} /

Re: Where can I get info about Maven tasks and goals?

2004-02-24 Thread Emmanuel Venisse
addPath tag is documented here : http://maven.apache.org/tags.html Emmanuel - Original Message - From: [EMAIL PROTECTED] [EMAIL PROTECTED] To: Maven Users List [EMAIL PROTECTED] Sent: Tuesday, February 24, 2004 5:55 PM Subject: Where can I get info about Maven tasks and goals? Where

RC2?

2004-02-24 Thread Darren Hartford
Hey all, I'm sure this has been asked a dozen times, but is there a roadmap for RC2? Just curious of there is a target timeline and-or shrinking-growing todo list before RC2 and-or features that must be in RC2. -D - To

RE: RC2?

2004-02-24 Thread Brett Porter
http://jira.codehaus.org/secure/BrowseProject.jspa?id=10030report=roadmap 4 small outstanding issues that have cropped up. http://feeds.codehaus.org/maven/ - Brett -Original Message- From: Darren Hartford [mailto:[EMAIL PROTECTED] Sent: Wednesday, 25 February 2004 5:43 AM To:

Re: jar jboss-service.xml

2004-02-24 Thread Tim Chen
Here's one way to do it. resource directory${maven.hibernate.dir}/directory targetPath${maven.build.dir}/META-INF/targetPath includes include*.xml/include /includes /resource -Tim thorsten maus

repository proxy local-repo.copy

2004-02-24 Thread Kalaveshi, Adrian
Greetings -- My maven-proxy.properties file contains the following: repo.local.store=/export/repository-proxy repo.local-repo.url=file:/export/repository repo.local-repo.copy=false As you can see, the proxy and the repository exist on the same machine. I can't get the repo.local-repo.copy

Re: Using ANT build.xml in Maven?

2004-02-24 Thread conradwt
Hi, how does one properly add the following to the maven.xml? Now, should I put the typedefs in the maven.xml instead of the project.xml? Thanks, -Conrad except you wrap a goal around a target perhaps ... your command line would work the same. You can pretty much stuff all taskdefs,

RE: Using ANT build.xml in Maven?

2004-02-24 Thread Brett Porter
There is user documentation on the web site that describes maven.xml in more detail - but you just need to wrap the below in the following tag: project xmlns:ant=jelly:ant ... /project -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Wednesday, 25 February

Re: repository proxy local-repo.copy

2004-02-24 Thread Ben Walding
Probably best not to use maven-proxy from CVS at the moment as I'm in the middle of trying to work out a sane way to do all this. Just use the config and jars from the wiki. Kalaveshi, Adrian wrote: Greetings -- My maven-proxy.properties file contains the following:

RE: repository proxy local-repo.copy

2004-02-24 Thread Kalaveshi, Adrian
I'm using the jars from the wiki. I'm only trying to exercise the repo.local-repo.copy property -- should this work? I'd like it to *not* copy jars from the repository to the proxy when they're requested from the proxy. There's a bullet item on the wiki that says: It is maven aware - eg.

Re: [MAVEN-PROXY] repository proxy local-repo.copy

2004-02-24 Thread Ben Walding
The wiki was (I've updated it) a little misleading. * SNAPSHOTs are not updated - I'm not 100% sure how I want to handle this at present * That repo.local-repo.copy thing is a new feature I'm currently adding. Still wrestling with doing it cleanly and what it means. I should be pushing out a

RE: RC2?

2004-02-24 Thread Jörg Schaible
Brett Porter wrote on Tuesday, February 24, 2004 11:00 PM: http://jira.codehaus.org/secure/BrowseProject.jspa?id=10030re port=roadmap 4 small outstanding issues that have cropped up. Brett, can you comment about this? http://jira.codehaus.org/secure/ViewIssue.jspa?key=MAVEN-1154 You set