Re: Maven and C\CPP development

2004-12-13 Thread dan tran
I am planing to use maven-native-plugin to build multiple platform targets. Has anyone worked on this? Here is how I would contruct my project, please advice myproj share <- java code src java cpp natives

Re: Reactor & SubProject interdepencies

2004-12-13 Thread Richard Bair
Nevermind, indeed it does work the way I was expecting, and I did have a bug in my project.xml files. Incidently, the problem was a missing tag at the beginning of each project.xml file. Richard --- Richard Bair <[EMAIL PROTECTED]> wrote: > Hey Everyone, > > I've read that Reactor will order

Reactor & SubProject interdepencies

2004-12-13 Thread Richard Bair
Hey Everyone, I've read that Reactor will order sub-projects for compilation based on those sub-projects dependancies. So, if A depends on B which depends on C, then they will be built C->B->A. I assumed that to form these dependencies I would just list a dependency for A like so in my project.xm

Re: uberjar plugin with 1.0.2

2004-12-13 Thread Brett Porter
Does the project you are working on have a velocity dependency? - Brett On Mon, 13 Dec 2004 16:58:58 -0500, Charles N. Harvey III <[EMAIL PROTECTED]> wrote: > Is anyone else having problems with the little-used uberjar plugin? > Ever since 1.0.2 I am getting velocity errors in a few plugins. > O

Re: uberjar plugin with 1.0.2

2004-12-13 Thread Charles N. Harvey III
Nope. What else should I check? axis jar axis 1.1 commons-discovery jar commons-discovery 0.2 commons-lang jar commons-lang 2

Re: Test cases in jar

2004-12-13 Thread Brett Porter
No, this has been discussed several times. If you want them to run your test cases, why not just give them the whole source tree? If you have a need to share test classes among projects, generally they should be moved to a separate project where they are in main. On Mon, 13 Dec 2004 16:22:03 -0

Question about remote repository properties

2004-12-13 Thread Richard . Batchelor
Hi all, Hope you don't mind, I am new to Maven and have a quick question to confirm my understanding. I am currently trying to set up a remote repository, and have been confused by the various properties that relate to remote repository use, particularly as even when I thought I had set up the

uberjar plugin with 1.0.2

2004-12-13 Thread Charles N. Harvey III
Is anyone else having problems with the little-used uberjar plugin? Ever since 1.0.2 I am getting velocity errors in a few plugins. Ok, 2 plugins. "site" and "uberjar". - uberjar:init: [mkdir] Created dir: /code/home2/charvey/

Re: Maven and C\CPP development

2004-12-13 Thread Nicolas Chalumeau
native :-) http://maven.apache.org/reference/plugins/native/ On Mon, 13 Dec 2004 23:30:23 +0200, Graham Leggett <[EMAIL PROTECTED]> wrote: > Brett Porter wrote: > > > There is a native plugin which hopefully will fit your needs. Please > > let us know if it doesn't. > > What is the plugin calle

Re: Maven and C\CPP development

2004-12-13 Thread Graham Leggett
Brett Porter wrote: There is a native plugin which hopefully will fit your needs. Please let us know if it doesn't. What is the plugin called? Regards, Graham -- - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands,

Test cases in jar

2004-12-13 Thread Charles N. Harvey III
Hello. I could swear this is really easy but I can't figure out how to include my test cases in my jar file. I want to give the jar to someone else and have them run test cases, just so they can see what I am seeing. But since the test cases are in another source tree, they don't get included. Is

Re: JXR plugin

2004-12-13 Thread Brett Porter
The code is in the plugin to use, though maybe maintaining a small POM and using maven to just generate the report is a better idea? You never know when you might want another of the reports, or to try Maven itself. Cheers, Brett On Mon, 13 Dec 2004 10:25:08 -0500, Andy Kriger <[EMAIL PROTECTED]

Re: JXR plugin

2004-12-13 Thread Siegfried Goeschl
Hi Andy, I while ago I used Maven to create the reports for a huge ANT project 1) created a mini-POM - this allows to run the plugins operating on source code 2) integrated the Maven reporting into the existing ANT build 3) patched a few plugins so that ANT was compiling the code and Maven was ru

Re: Maven and C\CPP development

2004-12-13 Thread Brett Porter
There is a native plugin which hopefully will fit your needs. Please let us know if it doesn't. - Brett On Mon, 13 Dec 2004 11:20:09 +0200, Glasman, AdiX <[EMAIL PROTECTED]> wrote: > I would like to use maven in C CPP environment. > Maven is a suitable \ "Ready for use" in java environment. > Wh

Re: How do I install downloaded Mavenide .nbm files into Netbeans 4.0 RC1

2004-12-13 Thread Milos Kleint
Hello, sorry for late reply, I was away on holidays. Installation is simple. 1.start netbeans, trigger the menu item Tools/Update center. 2. a wizard appears, select the "Install manually downloaded modules" radio button.. 3. in the next panel add all the nbm files to install 4. click all the wa

Re: Test cases in jar

2004-12-13 Thread Andrew Chapman
You can of course bundle the jar up with anything else for distribution. The example below is what we do but you could just as easily include your test case classes with a batch file for someone else to run. Invoke the release:build-distribution-bin goal to build a zip.

Re: Maven and C\CPP development

2004-12-13 Thread Graham Leggett
Nicolas Chalumeau wrote: native :-) http://maven.apache.org/reference/plugins/native/ The penny drops, thanks :) Regards, Graham -- - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Reactor & SubProject interdepencies

2004-12-13 Thread David Jencks
I strongly recommend you try out multiproject which does most of this heavy lifting for you, i.e. you don't need any reactor targets. david jencks On Dec 13, 2004, at 5:27 PM, Richard Bair wrote: Nevermind, indeed it does work the way I was expecting, and I did have a bug in my project.xml files.

Hibernate doclet failing with Maven/dependencies

2004-12-13 Thread Jose Gonzalez Gomez
Hi there, I have the following scenario: I have two maven projects, one depending on the other. The first maven project contains an interface that is tagged with @hibernate.class tag. The second project contains a class that is tagged with @hibernate.joined-subclass. When I run the xdoclet:hib

RE: Modifying download.xml [SOLVED]

2004-12-13 Thread Marthi, Bhaskar
What is the download.xml and how does it work in Maven world? Bhaskar -Original Message- From: Michael Niemaz [mailto:[EMAIL PROTECTED] Sent: Sunday, December 12, 2004 8:42 AM To: Maven Users List Subject: Re: Modifying download.xml [SOLVED] oops, I meant 'maven.xdoc.distributionType=zi

JXR plugin

2004-12-13 Thread Andy Kriger
Is it possible to use the JXR plugin outside of Maven (if that is the plugin that generates the xref'd source HTML files)? I'd like to produce source code reporting like that without using all of Maven for my project. thx a - To

How to get LICENSE.txt included in jars generated by (generated) ant build.xml

2004-12-13 Thread Phil Steitz
I need to make sure that LICENSE.txt is included in the META-INF of jars generated both by maven's jar plugin and by the build.xml generated by ant:generate-build. If I include LICENSE.txt as a resource in project.xml explicitly, this works to get it into build.xml, but causes the maven jar pl

was5 plugin 1.2 / maven 1.0.1

2004-12-13 Thread Böhringer Jochen
Hi, I have two questions regarding the was5 plugin: Security: I try to use the following snippet in my build.properties file to pass username and password to the wsadmin script. maven.was5.script.username=admin maven.was5.script.password=xxx But I get an error telling me, that maven cannot con

Maven and C\CPP development

2004-12-13 Thread Glasman, AdiX
I would like to use maven in C CPP environment. Maven is a suitable \ "Ready for use" in java environment. What about other environments? - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTE