RE: [Mavenbook.org] What content would you like to see?

2005-06-13 Thread Vincent Massol
Hi Emmanouil, -Original Message- From: Emmanouil Batsis [mailto:[EMAIL PROTECTED] Sent: dimanche 12 juin 2005 02:03 To: Maven Users List Subject: Re: [Mavenbook.org] What content would you like to see? On Thursday 09 June 2005 12:11, Graham King wrote: I don't know if the book

Multiproject in Eclipse

2005-06-13 Thread Alan Cui
Hi all, I have a project with several subproject in it. I use multiproject plugin and reactor to manage the structure, but as Eclipse only has one level structure, I have no idea about how to import them to Eclipse. It will be appreciated, if you can give me a hand. Best regards. Alan Cui

Ant with Maven

2005-06-13 Thread Chedly GUERFALI
Hello all, I am trying to echo the ValidId property like above: ant:Condition property=validId value=false else=true ant:Length file=Q:\valid_id.txt when=greater length=0/ /ant:Condition echo ValidId = ${validId}/echo in order to test if a file is empty or not and the result is always

RE: Eclipse configuration for a root multiproject

2005-06-13 Thread Ryan Sonnek
This problem is solved if use a flat project layout. simply place you're parent project.xml in a seperate folder and update the multiproject properties to this: #multiproject settings. maven.multiproject.basedir=${basedir}/../ maven.multiproject.includes=*/project.xml

Open Source BEER JUG Event! :: Maven ActiveMQ

2005-06-13 Thread JUG Event Registration
:: ActiveMQ :: Maven :: Continuum :: WHAT: Open Source BEER JUG Event! WHEN: 6.28.05 - Tuesday Night 6:00pm after JavaOne WHERE: Sheraton Palace Hotel (2 Blocks North

[maven 1.0.2] [WAR plugin] war:war-resources goal modification request.

2005-06-13 Thread Raphaël Piéroni
Hello, I would like to have the war plugin modified to add filtering in the war:war-resources goal. here is the modified goal extracted from the 1.6.1 war plugin goal name=war:war-resources prereqs=war:init description=Copy webapp resources to target directory ant:mkdir

Why I hate Maven :-)

2005-06-13 Thread Jim Mochel
Brett Porter recently posted a BLOG entry asking why some people hate Maven. I couldn't get the blog entry dialog to take more than two sentences so I figured I would post it here. Please read this without assuming that I am attacking Maven 1x. I clearly like something about Maven since I

Re: [maven 1.0.2] [WAR plugin] war:war-resources goal modification request.

2005-06-13 Thread Haryon
yes :). That's what I did and I got answer pretty fast. On 6/13/05, Raphaël Piéroni [EMAIL PROTECTED] wrote: Hello, I would like to have the war plugin modified to add filtering in the war:war-resources goal. here is the modified goal extracted from the 1.6.1 war plugin goal

Re: Basics

2005-06-13 Thread eblack
Hi, Take a look at the documentation at http://source.concord.org/softwaredocs/maven_build/jelly_hints.shtml It may be able to help creating a custom plugin. Eric On Mon, 2005-06-13 at 08:42 +0530, JAMES Vivek Assisi wrote: Hi, Could you please let me know the use of project.xml,

RE: Why I hate Maven :-)

2005-06-13 Thread Stevenson, Chris
Jim, On your point about SOA and Maven. We have the same problem at my company. But you have to remember that the unit tests are to test the unit of deployment and its code. It sounds like what you're doing is integration testing (proxy code - server code) which is a different kettle of fish. We

Re: bundle problem

2005-06-13 Thread Haryon
There is only one inheritence option, that is extend. If you use it for maintain version value equals across all maven projects of a same business project, but want different dependencies for each... you are toast :) you have to pick one or the other, can't have both. What you can't inherit, you

How do I add hierarchical site navigation in breadcrumbs?

2005-06-13 Thread Anuradha Shenoy
Anu Shenoy DPG Technical Publications Borland Software Corporation Contact Info. 408-863-2835 Borland Software is the global leader in platform independent solutions for Software Delivery Optimization, helping customers address the constraints of modern day software development to

spring dependancy configuration for maven?

2005-06-13 Thread Mick Knutson
Does anyone have some examples on how to setup spring into my maven project? Thank You Mick Knutson Sr. Java/J2EE Consultant BASE logic, inc. (415) 648-1804 (S.F., CA) http://www.BASELogic.com HP Consulting Services (Walnut Creek, CA)

Re: jar:deploy fails if project.xml is not in the current directory

2005-06-13 Thread Jean-Luc Wasmer
Brett Porter wrote: Seems this is a bug introduced in the latest version. I will work on a fix immediately. I will verify the other bug you originally reported doesn't exist either. Is it fixed in version 1.5? That's what I understand from: * Fix Version:

how to bundle project docs with war?

2005-06-13 Thread Mick Knutson
I can build all my generic docs with multiproject:site, but want to know how to bundle them with the war for a dev deploy? Thank You Mick Knutson Sr. Java/J2EE Consultant BASE logic, inc. (415) 648-1804 (S.F., CA) http://www.BASELogic.com HP Consulting Services (Walnut Creek, CA)

RE: spring dependancy configuration for maven?

2005-06-13 Thread Marc-Andre Blain
1 -Insert this dependency dependency groupIdspringframework/groupId artifactIdspring/artifactId version1.2.1/version urlhttp://www.springframework.org//url properties war.bundletrue/war.bundle /properties

RE: spring dependancy configuration for maven?

2005-06-13 Thread Mick Knutson
I have several subprojects in my 1 maven project. So, would this still need to go into my war subproject, or my ear subproject? Also, do I need any of the other jars from spring? From: Marc-Andre Blain [EMAIL PROTECTED] Reply-To: Maven Users List users@maven.apache.org To: Maven Users List

RE: spring dependancy configuration for maven?

2005-06-13 Thread Marc-Andre Blain
your Application server should be able to load the jar if you put it only in you ear project. Regarding other jars, it depends on what you use in spring. In my projects, I need to also include aopalliance because I use the AOP functionnality of spring. Thanks ! Marc-Andre -Original

websphere configuration for xdoclet in maven build?

2005-06-13 Thread Mick Knutson
Does anyone have any exapmles of configuring maven to allow xdoclet to generate websphere specific ejb files? Thank You Mick Knutson Sr. Java/J2EE Consultant BASE logic, inc. (415) 648-1804 (S.F., CA) http://www.BASELogic.com HP Consulting Services (Walnut Creek, CA)

Native dependencies

2005-06-13 Thread Grant Ingersoll
Hi, I have a 3rd party JAR that requires a native library. How do I specify the dependency such that the native library gets put in a place where I can link with it at runtime? Thanks, Grant Ingersoll - To unsubscribe,

Re: Native dependencies

2005-06-13 Thread dan tran
- put the native files under your local repo - add them to your dependencies list At run time system use pregoal to add the native files to a localtion understand by your system, ORuse some sort of environment valiable to add your file to linkage path What OS are you targeting? -D On

Re: Native dependencies

2005-06-13 Thread Grant Ingersoll
Will give it a try. I am targeting Windows and *nix. Am new to Maven, so will have to go figure out the pregoal stuff (ironically, I was just looking into that for something else!) [EMAIL PROTECTED] 6/13/2005 3:44:55 PM - put the native files under your local repo - add them to your

Re: Why I hate Maven :-)

2005-06-13 Thread Wim Deblauwe
ISSUE: The one project, one artifact rule is a great rule for configuration management BUT it puts the onus of managing complexity on the developer rather than the tool. SNIP The ability for a project to be able to register that it produces N artifacts and list those artifacts, ids,

xdoclet:hibernatedoclet will not produce 3.0 mappings

2005-06-13 Thread Craig McDaniel
I have read what little documentation there is on the maven-xdoclet-plugin and I can't get it to generate mappings for any Hibernate version other than 1.1 I cracked open in the plugin.properties file and found the following: maven.xdoclet.hibernatedoclet.hibernate.0=true So I added the

Re: Native dependencies

2005-06-13 Thread dan tran
In case you are going to build native code, take a look at maven-native-plugin -D On 6/13/05, Grant Ingersoll [EMAIL PROTECTED] wrote: Will give it a try. I am targeting Windows and *nix. Am new to Maven, so will have to go figure out the pregoal stuff (ironically, I was just looking into

Re: xdoclet:hibernatedoclet will not produce 3.0 mappings

2005-06-13 Thread Anatol Pomozov
I could suggest you to try xdoclet2. Xdoclet2 has a perfect support of Hibernate3. You can download plugin bundle from sf.net/projects/xdoclet-plugins . Also for you will be helpful changeset between x1 and x2 plugins http://docs.codehaus.org/pages/viewpage.action?pageId=26194 On 6/13/05,

RE: Why I hate Maven :-)

2005-06-13 Thread Justin_Freitag
We follow a similar method here. Any system testing that is to be done at a unit level must use mocks. Each project's test directory contains unit and system dirs, with the unitTestSourceDirectory pointing to the desired test type at build/post-deploy time. cheers, Justin

Re: Multiproject in Eclipse

2005-06-13 Thread Brett Porter
Please check the archives. I've run out of fingers to count the number of times this has been answered recently :) Time for somebody to draft a FAQ entry! Cheers, Brett On 6/13/05, Alan Cui [EMAIL PROTECTED] wrote: Hi all, I have a project with several subproject in it. I use multiproject

Re: Eclipse configuration for a root multiproject

2005-06-13 Thread Brett Porter
That's a shame... maybe it turned up after I got my HTML dump that I incorporated into the current site. By the time I got to it, it was so severely defaced by script kiddies that there was nothing left. There are a couple of options for this: we have a confluence install at codehaus (which to

NOTICE: Removal of some plugins from 1.1

2005-06-13 Thread Brett Porter
Hi, As some would know, there are a number of plugins in the main Maven distribution that have gone dormant, and are now either unmaintained, out of date, or too poorly documented to be useful. The Maven developers community have voted to remove the following from the next release. - They will

Geronimo Remote Deployment

2005-06-13 Thread NATARAJAN Sasi Kumar
Hai All The following code is possible to deploy local. But I am expecting remote deployment how can I do. Anyone has idea please advice to me Thanks in Advance Kumar !-- === -- !-- Geronimo SETTINGS --

RE: Why I hate Maven :-)

2005-06-13 Thread Jim Mochel
Chris, Thank you for the comment. Integration is indeed another issue. Unfortunately , even our base services need to be deployed into a container before testing. The proxy generation has to occur at the same time for reasons specific to the way another group choose to design the SOA.