RE: eclipse compiler

2006-02-09 Thread Jay H. Hartley
in the classpath? Rolf On 2/8/06, Jay H. Hartley [EMAIL PROTECTED] wrote: Rolf, If you are using Maven 2, set the executable parameter for the compile:compile goal: http://maven.apache.org/plugins/maven-compiler-plugin/compile-mojo.html http://maven.apache.org/plugins/maven-compiler-plugin/compile

RE: eclipse compiler

2006-02-08 Thread Jay H. Hartley
Rolf, If you are using Maven 2, set the executable parameter for the compile:compile goal: http://maven.apache.org/plugins/maven-compiler-plugin/compile-mojo.html For a description of how to set compiler parameters, see http://maven.apache.org/plugins/maven-compiler-plugin/howto.html For Maven

RE: Compiling Multiple Source Trees

2005-10-10 Thread Jay H. Hartley
Alternatively, if the mock objects are intended for use in multiple projects, define them in their own project. They can then be deployed like any other project artifact and can be used in test cases for multiple other projects. When deploying the final application, exclude this jar in the same

RE: [m1 or 2] Odd project structure... how much pain will this be?

2005-09-26 Thread Jay H. Hartley
It sounds to me like two types of documentation are needed. One is the/an ideal Maven Way of setting up a consultant's multi-client project, assuming you are starting fresh and know you will be using Maven. I personally think that Maven is ideal for exactly that kind of environment, but then I'm

RE: Working with Branches

2005-09-20 Thread Jay H. Hartley
In Maven 1 properties: maven.scm.tag=BRANCH_TAG_NAME See: http://maven.apache.org/reference/plugins/scm/properties.html In Maven 2 POM: scm ... tagBRANCH_TAG_NAME/tag ... /scm See: http://maven.apache.org/maven2/maven-model/maven.html#class_Scm I haven't used Maven 2

RE: [m1] Conditional dependencies

2005-09-01 Thread Jay H. Hartley
that just happen to share the same codebase. Good luck, Jay -Original Message- From: Wendy Smoak [mailto:[EMAIL PROTECTED] Sent: Thursday, September 01, 2005 10:40 AM To: Maven Users List Subject: Re: [m1] Conditional dependencies From: Jay H. Hartley [EMAIL PROTECTED] 2) Create two

RE: [m1] Conditional dependencies

2005-08-30 Thread Jay H. Hartley
Wendy, I can't say I've had this exact problem, but I can think of two approaches I'd consider: 1) Create a separate project, let's call it jsf. Have all the RI/MyFaces jars listed in its dependency list. No code is involved, but the build produces two artifacts, both uberjars (not that you'd

RE: Multiproject site navigation question

2005-08-09 Thread Jay H. Hartley
Our approach is to have a dedicated documentation sub-project, with just xdocs. The multiproject parent project has little if anything in it, so the default navigation is fine. One of the links then leads to Documentation. That project then has a customized navigation.xml linking together all the

Re: Problem targeting two platform builds with Maven 2.0

2005-06-17 Thread Jay H. Hartley
I'm a bit confused by the initial problem posed in this thread. This may expose a fundamental misunderstanding of Java on my part, but if so I'd like it cleared up by this fine group sooner rather than later. I routinely build a project for a CDC target using a Sun J2SE 1.3 boot class path,