Where to get maven 1.0-beta-9

2003-04-02 Thread Martin Skopp
Sorry, I am brandnew to the list (and to maven) and I was too dumb to download the beta9. Only got beta8 via http://maven.apache.org/builds/release/ The web page says the beta9 is out, itsn't it? Thanks, -- Martin Skopp - To un

Re: Recursive dependencies

2003-04-02 Thread dion
The plan is for 1.0 to be able to specify a dependency on a POM (project.xml file for another project), and have Maven automatically flatten the dependencies. If someone wants to step up and start coding it, I'd be happy to help. -- dIon Gillard, Multitask Consulting Blog: http://www.freero

Downloading New Source code from CVS

2003-04-02 Thread Jabe Bloom
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hello everyone, I think I have Maven running for most of my project. However it doesn't seem to D/L the new source code from CVS when I run java:jar. Do I need to manually DL the new CVS code before I build? - --jabe -

Re: Maven initial project creation throws an exception and dies

2003-04-02 Thread dion
We really should FAQ this. But the very first run of maven expands the plugins in the $MAVEN_HOME directory. It's a known bug. And will be fixed for 1.0. -- dIon Gillard, Multitask Consulting Blog: http://www.freeroller.net/page/dion/Weblog Work: http://www.multitask.com.au Graham

Re: Recursive dependencies

2003-04-02 Thread Jose Gonzalez Gomez
I was thinking even about having this information in the repository. Recently I have switched my main box to Gentoo linux, and they have a real nice installation system called Portage. Included in this system is the idea of dependencies. Let's say you want to install package A, and that p

RE: Recursive dependencies

2003-04-02 Thread Michal Maczka
I think that this issue can be solved in much nicer way once generic artifact support is implemented in Maven. Then I imagine such algorithm: struts 1.1-b3 group Then Maven will do: 1) Download the POM for struts-1.1-b3. 2) Resolve all dependencies which are listed in str

RE: Why no multiple locations of sources? ( was Re: inter-projectdependencies for the Eclipse plugin )

2003-04-02 Thread Michal Maczka
> -Original Message- > From: Jason van Zyl [mailto:[EMAIL PROTECTED] > Sent: Wednesday, April 02, 2003 5:10 PM > To: Maven Users List > Subject: Re: Why no multiple locations of sources? ( was Re: > inter-projectdependencies for the Eclipse plugin ) > > > On Wed, 2003-04-02 at 09:05, Rafa

RE: integration tests

2003-04-02 Thread David Zeleznik
FYI, there was some discussion on this issue a while back. But currently, the integrationUnitTest elements of the pom are not being used anywhere. We wrote this little hack that seems to be working well for us: Running ${maven.test.mode} tests

Re: Recursive dependencies

2003-04-02 Thread Alex Arnell
I agree with this. Instead of having a huge long list of dependecies, it would be nice if you could group dependecies. Using the Struts example below you could have a maven structure like the following struts 1.1-b3 http://jakarta.apache.org/struts/

integration tests

2003-04-02 Thread Stephen Haberman
Hi, I'm working on a webapp where I've got a bunch of domain model unit tests in src/test and then want to put some HttpUnit integration tests in something like src/iu-test or src/web-test. I was hoping to use the pom's integrationUnitTestDirectory element, but it seems to be no longer used? Does

Recursive dependencies

2003-04-02 Thread Jose Gonzalez Gomez
Has Maven any way to specify nested or recursive dependencies? So now you must be asking what the #$@ is a recursive dependency... An example: I'm just beginning to play a bit with maven, and have defined my first dependencies. I'm using Struts, so I thought I should put Struts in my depe

Re: Why no multiple locations of sources? ( was Re: inter-projectdependencies for the Eclipse plugin )

2003-04-02 Thread Colin Sampaleanu
Jason van Zyl wrote: On Wed, 2003-04-02 at 09:05, Rafal Krzewski wrote: Jason van Zyl wrote: That is distinctly different than multiple source directories for your application. And here we are trying satisfy these requirements and scale by letting the plugins deal with these different requirem

More than two section levels?

2003-04-02 Thread Jose Gonzalez Gomez
Is there any easy way to define more than two levels in the section division of xdocs? (section, subsection) I'm feeling curious... why do they map to h3 and h4 instead of h1 and h2? Regards Jose - To unsubscribe, e-mai

Re: Why no multiple locations of sources? ( was Re: inter-project dependencies for the Eclipse plugin )

2003-04-02 Thread Mark McBride
I also like the idea listed in the email below. As to Ben's email here are my answers: Why do you have multiple source trees? We are using two tools for our projects. One tool is a code generation tool for our o/r mapping layer and we would like to keep it in it's own src directory to alleviat

Re: Maven initial project creation throws an exception and dies

2003-04-02 Thread Jose Gonzalez Gomez
From several messages: If you install Maven as root and want non-root users to use it, you should have a look at this patch: http://jira.codehaus.org/secure/ViewIssue.jspa?key=MAVEN-302 -- You can apply the patch in le

Re: Maven initial project creation throws an exception and dies

2003-04-02 Thread Graham Leggett
Jose Gonzalez Gomez wrote: There's a recent thread about this issue titled "Newbie - Permission denied on several files" started by me, take a look there The search archives options finds no such thread :( Can you give me a brief summary of what I must do to get maven to work? Do I have to g

Re: Why no multiple locations of sources? ( was Re: inter-projectdependencies for the Eclipse plugin )

2003-04-02 Thread Jason van Zyl
On Wed, 2003-04-02 at 09:05, Rafal Krzewski wrote: > Jason van Zyl wrote: > > > That is distinctly different than multiple source directories for your > > application. And here we are trying satisfy these requirements and scale > > by letting the plugins deal with these different requirements inst

Re: Maven initial project creation throws an exception and dies

2003-04-02 Thread Jose Gonzalez Gomez
There's a recent thread about this issue titled "Newbie - Permission denied on several files" started by me, take a look there Regards Jose Graham Leggett wrote: [EMAIL PROTECTED] wrote: Oh, and do you have write permissions to /opt/maven-1.0-beta-8/plugins/*? No - why would a norma

Re: Maven initial project creation throws an exception and dies

2003-04-02 Thread Graham Leggett
[EMAIL PROTECTED] wrote: Oh, and do you have write permissions to /opt/maven-1.0-beta-8/plugins/*? No - why would a normal user need write access to this directory? Regards, Graham -- - [EMAIL PROTECTED] "There's a moon

Re: Maven initial project creation throws an exception and dies

2003-04-02 Thread Graham Leggett
Neil Blue wrote: I think you need to use genapp as the command e.g. maven -Dpackage=za.co.fma.patricia genapp Bombs out with the exact same error :( Regards, Graham -- -Original Message- From: Graham Leggett [mailto:[EMAIL PROTECTED] Sent: 02 April 2003 15:08 To: [EMAIL PROTECTED] Subjec

Re: Maven initial project creation throws an exception and dies

2003-04-02 Thread dion
Where's the genapp goal? Oh, and do you have write permissions to /opt/maven-1.0-beta-8/plugins/*? -- dIon Gillard, Multitask Consulting Blog: http://www.freeroller.net/page/dion/Weblog Work: http://www.multitask.com.au Graham Leggett <[EMAIL PROTECTED]> wrote on 03/04/2003 12:07:39 AM

RE: Maven initial project creation throws an exception and dies

2003-04-02 Thread Neil Blue
Hi Graham, I think you need to use genapp as the command e.g. maven -Dpackage=za.co.fma.patricia genapp Neil :) -Original Message- From: Graham Leggett [mailto:[EMAIL PROTECTED] Sent: 02 April 2003 15:08 To: [EMAIL PROTECTED] Subject: Maven initial project creation throws an exception

IDEA was Re: Newbie questions

2003-04-02 Thread Brian Ewins
[EMAIL PROTECTED] wrote: I am also trying to move up to Eclipse, it seems that the Eclipse Maven plugin is still in development - is that right? I'd say non-existent rather than in development... Which reminds me to ask... I recently moved over to using IDEA, I'm using the attached file to run Ma

Maven initial project creation throws an exception and dies

2003-04-02 Thread Graham Leggett
Hi all, According to the manual, it is possible for maven to create an initial project directory structure like so: maven -Dpackage=za.co.fma.patricia patricia When I try it, I get an exception like so: __ __ | \/ |__ Jakarta _ ___ | |\/| / _` \ V / -_) ' \ ~ intelligent projects ~ |_| |

Re: Why no multiple locations of sources? ( was Re: inter-projectdependencies for the Eclipse plugin )

2003-04-02 Thread Rafal Krzewski
Jason van Zyl wrote: > That is distinctly different than multiple source directories for your > application. And here we are trying satisfy these requirements and scale > by letting the plugins deal with these different requirements instead of > trying to jam everything into the POM. I believe th

Re: Status of J2EE related plugins

2003-04-02 Thread vmassol
dIon, [snip] > > What's the plan? > ear processing is in the ear plugin. > war processing is in the war plugin. > ejb processing is in the ejb plugin. > jar processing is in the java plugin. > appserver processing is in the appserver plugin. What do you call appserver processing? For example, I'd

RE: Bootstrap build info

2003-04-02 Thread David Zeleznik
> Maybe you have no ant-optional-x.y.jar in that repo??? Or a bad > onetry > blowing it away. Thanks so much! Indeed, the ant-optional-1.5.1.jar in my repo was corrupted and only 224K (should be 640K). Not sure how that happened and why I never noticed it during a month of daily maven usage. D

Re: [source path] Seems that add don't work

2003-04-02 Thread Jason van Zyl
On Wed, 2003-04-02 at 05:48, [EMAIL PROTECTED] wrote: > Hi all, > > I tried to make as the antlr plugin does and so i put the following in a > maven.xml file closed to my project.xml: > >xmlns:maven="jelly:maven" > xmlns:j="jelly:core" > xmlns:u="jelly:util"> > > > Adding to the s

RE: Why no multiple locations of sources? ( was Re: inter-projectdependencies for the Eclipse plugin )

2003-04-02 Thread Jason van Zyl
On Wed, 2003-04-02 at 03:57, [EMAIL PROTECTED] wrote: > Ben, > > > So to Colin (I think) > > I'm not Colin, but I will try to explain the situation I'm in. > > > Why do you have multiple source trees? > > What is in them? > > 1) src/java: production source code > 2) src/junit: unit test code: c

Re: Fixes for the Maven JDeveloper Plugin!!!

2003-04-02 Thread dion
as a unified diff (-u) to the dev list will do. -- dIon Gillard, Multitask Consulting Blog: http://www.freeroller.net/page/dion/Weblog Work: http://www.multitask.com.au Rademacher Tobias <[EMAIL PROTECTED]> wrote on 02/04/2003 11:02:04 PM: > Hi Folks, > > I have applied some bug fixe

Re: Newbie questions - from ant to maven

2003-04-02 Thread dion
Jose Gonzalez Gomez <[EMAIL PROTECTED]> wrote on 01/04/2003 12:21:22 AM: > > I'm just beggining to use Maven, and I have a few questions: > >1. Does maven "deprecate" ant, or does maven use ant? Must I have ant > installed in order to use maven? Deprecate it. No need to have ant i

Re: Newbie questions - from ant to maven

2003-04-02 Thread dion
FWIW, Maven doesn't use a build.xml during the build process. -- dIon Gillard, Multitask Consulting Blog: http://www.freeroller.net/page/dion/Weblog Work: http://www.multitask.com.au Jose Gonzalez Gomez <[EMAIL PROTECTED]> wrote on 01/04/2003 12:55:00 AM: > > Is this the recomme

Re: Newbie questions

2003-04-02 Thread dion
Tim Pizey <[EMAIL PROTECTED]> wrote on 02/04/2003 10:57:53 PM: > Hi, > > Sorry to be so wet behind the ears, not used Maven before > (or XML much). > > My first issues: > I created a project.xml by saving the html at > http://maven.apache.org/start/integrate.html > and then editting, it would

Re: Fixes for the Maven JDeveloper Plugin!!!

2003-04-02 Thread Ben Walding
Jira is good, things don't get lost. For safety sake, attach both the diff and the jelly file. Rademacher Tobias wrote: Hi Folks, I have applied some bug fixes for the Maven JDeveloper Developer plugin. Please tell me how do you like to get the changes: 1) as diff result to the developer list 2

Re: Newbie questions - from ant to maven

2003-04-02 Thread Konstantin Priblouda
--- Jose Gonzalez Gomez <[EMAIL PROTECTED]> wrote: > > So, summing up, the preferred way of working > with complex projects > involving several artifacts is having different > projects (or > subdirectories under the main project directory) > containing all the > stuff for that artifact (wi

Re: Powered by logo competition is closing!!!

2003-04-02 Thread Ben Walding
Can I do nothing right this evening??? The comp will close 3 April 2003. Everything else is probably right. Ben Walding wrote: Alrighty, We've had quite a few submissions (some of them are even almost as good as RedGreen) and a reasonable number of votes. So heres the deal: * Voting closes a

Powered by logo competition is closing!!!

2003-04-02 Thread Ben Walding
Alrighty, We've had quite a few submissions (some of them are even almost as good as RedGreen) and a reasonable number of votes. So heres the deal: * Voting closes at the end of Thursday (17/4/2003). (While it's still 17/4/2003 somewhere in the world, you can vote. You may not create your o

Fixes for the Maven JDeveloper Plugin!!!

2003-04-02 Thread Rademacher Tobias
Hi Folks, I have applied some bug fixes for the Maven JDeveloper Developer plugin. Please tell me how do you like to get the changes: 1) as diff result to the developer list 2) the jelly file to the deveoper list 3) 1) but submitted to jira? 4) 2) but submitted to jira? Thx Toby ---

Re: Newbie questions - from ant to maven

2003-04-02 Thread Jose Gonzalez Gomez
So, summing up, the preferred way of working with complex projects involving several artifacts is having different projects (or subdirectories under the main project directory) containing all the stuff for that artifact (with the whole hierarchy of sources replicated along them), integrate t

Status of J2EE related plugins

2003-04-02 Thread Willie Vu
J2EE features scatter around many plugins currently - appserver, j2ee, ear, ejb, war. It is very confusing who is doing what. E.g. from the doc, appserver refers to j2ee. It seems like all the features are in j2ee. However, only war-validator goal survives in the j2ee CVS HEAD. The other day I

Re: Status of J2EE related plugins

2003-04-02 Thread dion
"Willie Vu" <[EMAIL PROTECTED]> wrote on 02/04/2003 09:41:12 PM: > J2EE features scatter around many plugins currently - appserver, j2ee,ear, ejb, > war. It is very confusing who is doing what. E.g. from the doc, appserver > refers to j2ee. It seems like all the features are in j2ee. However

Re: Newbie questions - from ant to maven

2003-04-02 Thread dion
Jose Gonzalez Gomez <[EMAIL PROTECTED]> wrote on 02/04/2003 09:23:23 PM: > >So do you have this projects in different locations, or could you > just create several project.properties (or whatever) to specify the > information for this projects and keep all the source under a common > loca

Re: Newbie questions - from ant to maven

2003-04-02 Thread ddubois
Jose, My two tips: Of course, I may missed something. But this is in short how I understand things Ant is a replacement of Make for Java, and much more. Ant is intended to build systems (see Ant Home page). Is you start to massively use Ant you will quickly needs to use External Tools and Tasks.

Newbie questions

2003-04-02 Thread Tim Pizey
Hi, Sorry to be so wet behind the ears, not used Maven before (or XML much). My first issues: I created a project.xml by saving the html at http://maven.apache.org/start/integrate.html and then editting, it would be really nice to have a link to a real xml file. I ran Maven against it last n

Reactor does not find action definition

2003-04-02 Thread Julian Payne
I have a problem when using the reactor that reports that one of the jelly scripts cannot find the action definition for the following line: When I run the goal by hand in the project directory this works fine! Is there something I have to do to make sure that this goal is loaded by the r

Re: Does xdocs let you have hierarchies?

2003-04-02 Thread Jose Gonzalez Gomez
I meant putting all the xdocs files only under /xdocs, not under any subdirectory of /xdocs (/xdocs/usecases or whatever). I took a look at maven site, as another post stated, and yes, there are docs under subdirectories. Thanks !!! Jose Ben Walding wrote: What do you mean by a "plain

Status of J2EE related plugins

2003-04-02 Thread Willie Vu
J2EE features scatter around many plugins currently - appserver, j2ee, ear, ejb, war. It is very confusing who is doing what. E.g. from the doc, appserver refers to j2ee. It seems like all the features are in j2ee. However, only war-validator goal survives in the j2ee CVS HEAD. The other day I

Re: Does xdocs let you have hierarchies?

2003-04-02 Thread dion
Jose Gonzalez Gomez <[EMAIL PROTECTED]> wrote on 02/04/2003 09:28:28 PM: > > In case there's any doubt about what I'm asking, I'm doing the > documentation of a project and thought about using maven to > automatically generate this. The first part I'm documenting is the use > cases of the

Re: Newbie questions - from ant to maven

2003-04-02 Thread Konstantin Priblouda
--- Jose Gonzalez Gomez <[EMAIL PROTECTED]> wrote: > >So do you have this projects in different > locations, or could you > just create several project.properties (or whatever) > to specify the > information for this projects and keep all the > source under a common > location and/or repos

Re: Does xdocs let you have hierarchies?

2003-04-02 Thread Ben Walding
What do you mean by a "plain hierarchy"? xdoc will transform all .xml files under /xdocs the index is created from navigation.xml and will expand and collapse (if [EMAIL PROTECTED] = "true"]) depending on where you are browsing Is this what you mean? Jose Gonzalez Gomez wrote: In case ther

Does xdocs let you have hierarchies?

2003-04-02 Thread Jose Gonzalez Gomez
In case there's any doubt about what I'm asking, I'm doing the documentation of a project and thought about using maven to automatically generate this. The first part I'm documenting is the use cases of the application, and I wanted to have a directory contaning this information, with subdir

Re: Newbie questions - from ant to maven

2003-04-02 Thread Jose Gonzalez Gomez
So do you have this projects in different locations, or could you just create several project.properties (or whatever) to specify the information for this projects and keep all the source under a common location and/or repository? Currently I'm developing a J2EE application that has a war a

Re: Newbie questions - from ant to maven

2003-04-02 Thread Konstantin Priblouda
--- Jose Gonzalez Gomez <[EMAIL PROTECTED]> wrote: > > I still don't see the diference or relation > between maven.xml and > build.xml. From what I read and your answers I > understand that maven is > thought for the development of a "monolithic" > application or library, > the one that ti

[source path] Seems that add don't work

2003-04-02 Thread dvillevalois
Hi all, I tried to make as the antlr plugin does and so i put the following in a maven.xml file closed to my project.xml: Adding to the source path set. But this doesn't seem to work. The message is well echoed but the path set does not seem to be appended. Does someone knows

Re: Newbie questions - from ant to maven

2003-04-02 Thread Jose Gonzalez Gomez
I still don't see the diference or relation between maven.xml and build.xml. From what I read and your answers I understand that maven is thought for the development of a "monolithic" application or library, the one that tipically is bundled in one jar, am I right? So if you need a custom

Re: Why no multiple locations of sources? ( was Re: inter-projectdependencies for the Eclipse plugin )

2003-04-02 Thread Rafal Krzewski
michal.maczka wrote: > won't it be simple just to have: > > >java >src/java > > > >cactus >src/cactus > > > >test >src/test/java > > **/*Test.java > > > **/RepositoryTest.java > **/JAXPTest.java > > > > >aspect >sr

Why no multiple locations of sources? ( was Re: inter-project dependencies for the Eclipse plugin )

2003-04-02 Thread michal.maczka
If I can add me 2 cents: I agree with Jason - the multiple location of the sources are evil...but I also agree with Colin that if you want or not they are already present in Maven. I think that maybe better assumption which is closer to current reality will be to have just one source location per

RE: Why no multiple locations of sources? ( was Re: inter-project dependencies for the Eclipse plugin )

2003-04-02 Thread michal.maczka
If I can add me 2 cents: I agree with Jason - the multiple location of the sources are evil...but I also agree with Colin that if you want or not they are already present in Maven. I think that maybe better assumption which is closer to current reality will be to have just one source location per

Re: Why no multiple locations of sources? ( was Re: inter-project dependencies for the Eclipse plugin )

2003-04-02 Thread vmassol
En réponse à Raphaël Piéroni <[EMAIL PROTECTED]>: > Hello maven devs and users, > > i dunno why splitting a source tree but as said before maven at the > moment as multiple trees : one for tests, one for java, one for > aspects. > > but i'll see a new one that can be added : aspect-test because

RE: Why no multiple locations of sources? ( was Re: inter-project dependencies for the Eclipse plugin )

2003-04-02 Thread DeSmet_Ringo
Ben, > So to Colin (I think) I'm not Colin, but I will try to explain the situation I'm in. > Why do you have multiple source trees? > What is in them? 1) src/java: production source code 2) src/junit: unit test code: component white box tests 3) src/integration: integration unit test code: com

AW: Maven and ant with style task

2003-04-02 Thread Henner Kollmann
Thanks that helps! Put the line into my maven.xml file and everything works! Thanks again, Henner Kollmann > -Ursprüngliche Nachricht- > Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > Gesendet: Mittwoch, 2. April 2003 09:27 > An: Maven Users List > Betreff: Re: Maven and ant with sty

Re: NumberFormatException when building with Maven

2003-04-02 Thread Mark H. Wilkinson
On Wed, 2003-04-02 at 01:21, [EMAIL PROTECTED] wrote: > "Nick S" <[EMAIL PROTECTED]> wrote on 01/04/2003 08:48:54 PM: > > > > > java.lang.NumberFormatException: For input string: "includes" [...] > > > > > > > > > > servlet.jar > > > > I think you need

Re: Why no multiple locations of sources? ( was Re: inter-projectdependencies for the Eclipse plugin )

2003-04-02 Thread Jason van Zyl
On Wed, 2003-04-02 at 03:02, Raphaël Piéroni wrote: > Hello maven devs and users, > > i dunno why splitting a source tree but as said before maven at the > moment as multiple trees : one for tests, one for java, one for > aspects. The one for aspects will more than likely be removed and be made t

Re: Why no multiple locations of sources? ( was Re: inter-project dependencies for the Eclipse plugin )

2003-04-02 Thread Raphaël Piéroni
Hello maven devs and users, i dunno why splitting a source tree but as said before maven at the moment as multiple trees : one for tests, one for java, one for aspects. but i'll see a new one that can be added : aspect-test because some aspects are for production execution and some others for tes