RE: breaking a PROJECT up into multiple Maven Projects

2005-03-03 Thread Galder Zamarreÿfffffffffff1o
im actually using multiproject at work at the moment. ill have a look tomorrow and let you know. For me the order was not important. --- "Mark D. Hansen" <[EMAIL PROTECTED]> wrote: > Looks helpful. Do you know if its possible to > define an ordering on the projects, so that - in my > case - i

Re: compiling with jar dependencies (found in the file system)

2005-03-03 Thread Brett Porter
You still need to specify dependencies, but the properties can be used to force them to be found on the file system. (please keep replies on list) - Brett On Thu, 3 Mar 2005 17:24:40 +, Bahaa Nasrallah <[EMAIL PROTECTED]> wrote: > Hi > Maybe my previous message was misleading, > in the tag

jira

2005-03-03 Thread Brett Porter
Please note that due to a database failure, there has been some dataloss on JIRA as it was restored from 2-Mar. I am replicating as much as possible from the mail archives now (except for those that are not needed for history). - Brett -

Re: problems

2005-03-03 Thread Brett Porter
Sorry, you can only extend one project at a time. We have not yet seen a valid use case for multiple inheritence - what are you trying to do? - Brett On Thu, 3 Mar 2005 18:17:31 +0100, VALLA Samuel <[EMAIL PROTECTED]> wrote: > Hello, > I have this schema : > > Project A Project B --

RE: breaking a PROJECT up into multiple Maven Projects

2005-03-03 Thread Arnaud HERITIER
The reactor will do it automatically for you if you define a dependency to core in was and bea projects. Arnaud > -Message d'origine- > De : Mark D. Hansen [mailto:[EMAIL PROTECTED] > Envoyé : jeudi 3 mars 2005 23:41 > À : Maven Users List > Objet : RE: breaking a PROJECT up into multip

RE: breaking a PROJECT up into multiple Maven Projects

2005-03-03 Thread Arnaud HERITIER
You can read this : http://www.pivolis.com/pdf/J2EE_projects_Maven_V1.1.pdf Arnaud > -Message d'origine- > De : Galder Zamarreÿfff1o [mailto:[EMAIL PROTECTED] > Envoyé : jeudi 3 mars 2005 21:45 > À : Maven Users List > Objet : Re: breaking a PROJECT up into multiple Maven Proj

RE: breaking a PROJECT up into multiple Maven Projects

2005-03-03 Thread Mark D. Hansen
Looks helpful. Do you know if its possible to define an ordering on the projects, so that - in my case - if I were to run maven -Dgoal=jar multiproject:goal, it would run myproj-core FIRST, and then the other myproj-* ?? Thanks, Mark > -Original Message- > From: Galder Zamarreÿf

Re: NullPointerException when invoking rmic from Maven

2005-03-03 Thread Jeanfrancois Arcand
OK Just in case somebody cares, the exception happens because Maven doesn't properly set the ANT classloader, so the rmic compiler ends up with a null classloader :-( -- Jeanfrancois Jeanfrancois Arcand wrote: Hi, when I call ant:rmic from Maven 1.0.2 I'm getting: [rmic] java.lang.NullPointe

creating my own plugin

2005-03-03 Thread Tate Austin
Okay so I have written a very basic plugin, and in attempting to run 'maven plugin' maven errors out with: java.lang.ClassNotFoundException: org.apache.commons.jelly.tags.velocity.VelocityTagLibrary at java.net.URLClassLoader$1.run(URLClassLoader.java:199) at java.security.AccessCon

Re: breaking a PROJECT up into multiple Maven Projects

2005-03-03 Thread Galder Zamarreÿfffffffffff1o
Have you had a look into the Maven Multiproject plugin? http://maven.apache.org/reference/plugins/multiproject/ --- "Mark D. Hansen" <[EMAIL PROTECTED]> wrote: > I have a big-ish project that want to structure as > multiple maven projects. I'm wondering is there is > a standard "best practice"

breaking a PROJECT up into multiple Maven Projects

2005-03-03 Thread Mark D. Hansen
I have a big-ish project that want to structure as multiple maven projects. I'm wondering is there is a standard "best practice" way to do this. Below are details of my PROJECT. PROJECT is a J2EE application. It has a core set of functionality that runs under any J2EE implementation. It als

Re: Running integration tests

2005-03-03 Thread Ralph Pöllath
I was hoping for something like this (which doesn't work BTW :-) // maven.xml Any ideas? Cheers, -Ralph. On 02.03.2005, at 19:02, dan tran wrote: Ralph, I would add another project to house your integration test cases. The source of the testcase must stay in

problems

2005-03-03 Thread VALLA Samuel
Hello, I have this schema : Project A Project B Project C | Project D My project A extends Project B and Project D, My project.xml like this ? : ProjectB/project.xml ProjectD/project.xml Or not ??? thanks

test:test goal being run multiple times

2005-03-03 Thread Galder Zamarreÿfffffffffff1o
I've got a project where i run clover and junit to get coverage and unit testing reports. At the moment, the test:test goal is run for both goals. I would like to know whether something is going to be done about this in future maven or junit or clover plugin versions? such as being able to indicate

Re: Clover plugin making tests running twice

2005-03-03 Thread Galder Zamarreÿfffffffffff1o
hehehe, this is exactly what i just asked. has this been raised in jira? could not find --- "Deblauwe, Wim" <[EMAIL PROTECTED]> wrote: > Hi, > > I am using the clover plugin, but when I do my tests > are being run twice. > Once just normally, and once instrumented by Clover. > Any idea on how

Clover plugin making tests running twice

2005-03-03 Thread Deblauwe, Wim
Hi, I am using the clover plugin, but when I do my tests are being run twice. Once just normally, and once instrumented by Clover. Any idea on how I can avoid this? regards, Wim Ing. Wim Deblauwe Software Development Engineer BarcoView - Medical Imaging Systems President Kennedypark

Re: compiling with jar dependencies (found in the file system)

2005-03-03 Thread Brett Porter
hot off the press: http://www.apache.org/~brett/maven-stage-site/using/managing-dependencies.html On Thu, 3 Mar 2005 15:42:40 +, Bahaa Nasrallah <[EMAIL PROTECTED]> wrote: > Hi, > I need to compile my project which needs dependencies that are found > in my file system. what should i specify

Maven and Abbot

2005-03-03 Thread Nascif Abousalh-Neto
Hi all, I am trying to run Abbot from Maven - not using the Abbot plugin, just driving the tests directly from Junit. I use Abbot programatically to find UI components and inject events. Anyway, I am having a lot of problems with Abbot failures - it works fine when called directly from Junit,

Re: using repositories inside multiproject project

2005-03-03 Thread eblack
This is the structure I was referring to: Projects |---Builds | |---maven.xml | |---project.properties | |---project.xml | |---Portfolio (multiproject build directory) | |---... | |---proj1 |---proj2 |---proj3 |---Portfolio (proj4) |--- ...

compiling with jar dependencies (found in the file system)

2005-03-03 Thread Bahaa Nasrallah
Hi, I need to compile my project which needs dependencies that are found in my file system. what should i specify in project.xml in the dependencies section and the project.properties file to make that possible. Lets say i have src directory which includes the source files and lib directory which i

RE: New Maven WebTest Plugin - Re: [Webtest] [maven plugin] Button not clicked in test

2005-03-03 Thread Eric Pugh
I have just committed the changes that Matt supplied to bump webtest to build 733. I've tested on Windows, please test on antoher platform. As soon as Siegfried get's his patch in, we can cut a release. Eric Pugh -Original Message- From: Matt Raible [mailto:[EMAIL PROTECTED] Sent: Wedn

Re: using repositories inside multiproject project

2005-03-03 Thread eblack
Hi, There are probably many ways that developers have created there own scheme, but what I did was to create a 'builds' directory on the same level as the apps(I'll call them projects) where common project.xml, maven.xml, and project.properties files go and are extended within each project's own m

using repositories inside multiproject project

2005-03-03 Thread maven
hi .. its my duty to migrate from ant to maven .. we have the following source-structure com | -- foo | -- app1 | -- app2 | -- app3 i created three subprojects for each of the apps ... the next thing i would like to do is to tell maven in the project.xml that it should

maven-axis-plugin-0.7 released

2005-03-03 Thread Janos Mucsi
--- Dominik Dahlem <[EMAIL PROTECTED]> wrote: Dominik 1. What is the nicest way to deploy a web service? Do I deploy an application first, then run axis:deploy? Is there a way to "hide" the WSDD inside the war/ear so that when the app starts it automatically registers the web service. (I know this

RE: Redundancy on unit test execution

2005-03-03 Thread James Richardson
> -Original Message- > From: Nascif Abousalh-Neto [mailto:[EMAIL PROTECTED] > Sent: 02 March 2005 23:18 > To: users@maven.apache.org > Subject: Redundancy on unit test execution > > I added some automated UI testing using Abbot and started to notice during > the Maven run windows that sh

Re: nightly builds?

2005-03-03 Thread Lukasz Bajorski
On Thu, 3 Mar 2005 11:22:48 +1100, Adam Jenkins <[EMAIL PROTECTED]> wrote: > > Hi, > > Is there somewhere we can download maven distributions that aren't official > releases? I wan't to use a later version than 1.0.2 but, due to firewall > restrictions, am having difficulty building from source.