Re: [m2] HibernateDoclet

2006-02-19 Thread Fred C.
can you point me to those "lots of interesting articles" ? concerning what I'd like to do with maven2 and xdoclet, it's pretty simple, I have Xdoclet tags in my bean objects and I'd like to generate my hibernate mapping (*.hbm.xml) files automatically with that information concerning learning

Re: cobertura plugin

2006-02-19 Thread javed mandary
Hi David, I solved the problem with the Cobertura plugin running hibernate junit tests by adding the following dependency in my POM: asm asm 1.5.3 It seems that Cobertura is looking for asm-2.1 in its POM while hibernate requires asm-1.5.3. By setting t

Re: Skin inheritance

2006-02-19 Thread javed mandary
I had a similar problem , the site.xml created for the parent is not inherited by the child modules , i had to create a site.xml for each child to have a consistent look and feel across the while project. Same thing applies for site.css file which must be defined repeatedly for each child. Anothe

Re: [ANN] Maven-Shared File Management Library 1.0 Released

2006-02-19 Thread Dion Gillard
Given no URLs to read in the announcement, what is the difference between the below and the FileSet classes in Ant? On 2/20/06, John Casey <[EMAIL PROTECTED]> wrote: > We are pleased to announce the 1.0 release of the file-management > utility library. > > GroupId: org.apache.maven.shared > Artifa

RE: [m1] Any plans for latest PMD into PMD plugin?

2006-02-19 Thread Arnaud HERITIER
Ok, we'll had some legends for them It's not a bad status but it's just that we don't have already take a look at them to see if we have to create a new release or not. And if we need to create a new release what we should do for it. We have now a very little team on m1 and none of us knows all p

RE: [m1] Any plans for latest PMD into PMD plugin?

2006-02-19 Thread Arnaud HERITIER
Ok, We'll release it this week. Thanks for your feedback Arnaud > -Message d'origine- > De : Jeff Jensen [mailto:[EMAIL PROTECTED] > Envoyé : dimanche 19 février 2006 19:44 > À : 'Maven Users List' > Objet : RE: [m1] Any plans for latest PMD into PMD plugin? > > I've run PMD a number

Javadoc generation dies during site:site

2006-02-19 Thread Dan Diephouse
When build the site javadocs, javadoc itself is dying on me. Its exiting with the error "javadoc: warning - Multiple sources of package comments found for package "org"". Anyone have any ideas on why this might be? I've attached a copy of the relavent output below. Also, my POM can be found

Re: Creating WEB-INF/lib directory

2006-02-19 Thread Ashish Srivastava
Yes everything gets compiled in the target directory. I do not want to use to copy or create these directories. I want to keep the libraries with in its' own web contexts and do not want to copy them in the directories accessbile across the web contexts. --- Wendy Smoak <[EMAIL PROTECTED]> wro

[ANN] Maven-Shared File Management Library 1.0 Released

2006-02-19 Thread John Casey
We are pleased to announce the 1.0 release of the file-management utility library. GroupId: org.apache.maven.shared ArtifactId: file-management Version: 1.0 This library provides simple functions surrounding file-sets, including: * Model for defining FileSet instances * Included/Excluded file s

[ANN] Maven Clean Plugin 2.1 for Maven 2.x Released

2006-02-19 Thread John Casey
We are pleased to announce the 2.1 release of the maven-clean-plugin for Maven 2.x. This release includes: * Support for following symbolic links (or NOT following them) To follow symbolic links when running the clean mojo, use: true * Support for additional file-sets mar

Re: Creating WEB-INF/lib directory

2006-02-19 Thread Wendy Smoak
On 2/19/06, Ashish Srivastava <[EMAIL PROTECTED]> wrote: > I am using maven2 and have defined the > in the pom.xml. What should I use? I used > compile and provided but it doesn't create the > WEB-INF/lib directory. Please keep replies on the mailing list. Using 'provided' will cause the proble

Re: Creating WEB-INF/lib directory

2006-02-19 Thread Wendy Smoak
On 2/19/06, Ashish Srivastava <[EMAIL PROTECTED]> wrote: > How can I create the WEB-INF/lib directory and copy > the jars which the web-app depends on during the maven > packaging? You shouldn't have to... Maven will do it for you. What version of Maven are you using? If it's not working, we'll

Creating WEB-INF/lib directory

2006-02-19 Thread Ashish Srivastava
How can I create the WEB-INF/lib directory and copy the jars which the web-app depends on during the maven packaging? __ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com

Re: how to prevent from creating exploded archive?

2006-02-19 Thread Alexandre Poitras
I am not sure but I think what you are looking for is war:inplace although I have never tried it. http://maven.apache.org/plugins/maven-war-plugin/inplace-mojo.html On 2/19/06, Brian E. Fox <[EMAIL PROTECTED]> wrote: > This exploded archive is where the war plugin assembles the war before > zippin

RE: how to prevent from creating exploded archive?

2006-02-19 Thread Brian E. Fox
This exploded archive is where the war plugin assembles the war before zipping it up. It's just a normal product of the war creation. If you really need it gone for some reason, use the ant plugin to delete the folder in the package phase. (pom defined plugins run after the lifecycle ones so callin

how to prevent from creating exploded archive?

2006-02-19 Thread Szczepan Faber
How to prevent from creating exploded archive in war:war goal (I want only war to appear in target) ?

Re: [m2] Compiling JSPs

2006-02-19 Thread Matt Raible
I was able to successfully get this plugin to work - thanks to Jeff Genender (the plugin's author). I did find that I needed to add the following two dependencies to my project. javax.servlet jsp-api 2.0 provided tomcat jasper-runtime

Re: setting up a resource filter so that hibernate xml files get copied over when compiling?

2006-02-19 Thread Christian Cabanero
Sorry, I should've also mentioned that I'm using Maven2. On 2/19/06, Christian Cabanero <[EMAIL PROTECTED]> wrote: > > Sorry, stupid gmail, I hit a key and it sent it pre-maturely. > > Anyways, I have some hibernate xml files that I want copied over that are > in that domainimpl/user directory but

Re: setting up a resource filter so that hibernate xml files get copied over when compiling?

2006-02-19 Thread Christian Cabanero
Sorry, stupid gmail, I hit a key and it sent it pre-maturely. Anyways, I have some hibernate xml files that I want copied over that are in that domainimpl/user directory but right now with this config it's copying all the files in that directory over, java files and everything. How do I make it s

setting up a resource filter so that hibernate xml files get copied over when compiling?

2006-02-19 Thread Christian Cabanero
I setup a particular directory to be a resource in the build section my POM but how do I make it so that only *.xml files get copied? For example, I have this in my build element of my POM: amazon/nownow/domainimpl/user src/main/java/amazon/nownow/domainimpl/user/

Re: [ANN] Maven Checkstyle Plugin 3.0 for Maven 1.x released

2006-02-19 Thread Eric Rose
On Sunday 19 February 2006 08:11, Lukas Theussl wrote: > I have deployed a new snapshot which uses a jsl transform instead of > ant's style task. This should eliminate any jdk related issues, please > test: > > maven plugin:download > -Dmaven.repo.remote=http://www.ibiblio.org/maven,http://cvs.apac

Re: site snapshot plugin checklist

2006-02-19 Thread Brett Porter
checkout the skins, mvn install -DupdateReleaseInfo=true. On 2/20/06, Geoffrey De Smet <[EMAIL PROTECTED]> wrote: > Is there any checklist on how to give the site 2.0-SNAPSHOT a test run? > (I 'd be happy to supply some feed back) > The normal procedure doesn't work as it can't find the default sk

site snapshot plugin checklist

2006-02-19 Thread Geoffrey De Smet
Is there any checklist on how to give the site 2.0-SNAPSHOT a test run? (I 'd be happy to supply some feed back) The normal procedure doesn't work as it can't find the default skin it seems. Thanks for any and all help. -- With kind regards, Geoffrey De Smet --

Specifying -Xmx in surefire plugin?

2006-02-19 Thread Henrik Mejlgaard
How do I specify a -Xmx property in the surefire plugin? I know of the system properties tag, but don't know the exact syntax for properties like this. TIA, Henrik

RE: [m1] Any plans for latest PMD into PMD plugin?

2006-02-19 Thread Jeff Jensen
Hmm, I don't even recall seeing the message! What does "not yet defined" mean? Could you add a "Current Status" and descriptions to the legend? (it must not be a "bad" status, as it is the status of some critical plugins! :-) -Original Message- From: Arnaud HERITIER [mailto:[EMAIL PROT

RE: [m1] Any plans for latest PMD into PMD plugin?

2006-02-19 Thread Jeff Jensen
I've run PMD a number of times now and no probs. Thanks Arnaud. -Original Message- From: Arnaud HERITIER [mailto:[EMAIL PROTECTED] Sent: Saturday, February 18, 2006 7:02 PM To: Maven Users List Subject: Re: [m1] Any plans for latest PMD into PMD plugin? it's ready. The future document

Re: Multiprojects and remote basedir repository (inconsistent behaviour bug?)

2006-02-19 Thread Geoffrey De Smet
The module refactor had nothing do with it. In fact springRichclientRepository Spring rich client repository file:${basedir}/maven2repository true doesn't work when inherited as the basedir chan

"Tagging" a deployed artifact based on profile used to create it

2006-02-19 Thread Bent André Solheim
Hi all. I have a web app that I need to build for deployment on different tomcat instances (production and test). To achieve this I use profiles; I use different properties files depending on the profile that was used for building. This works great. Now, the problem I have is that in addition to

Re: [m2] Compiling JSPs

2006-02-19 Thread Matt Raible
Thanks - removing the element seems to do the trick. However, it looks like the dependencies are messed up. I'll see if I can patch the pom and submit a bug for it. [INFO] [ERROR] FATAL ERROR [INFO] -

M2 central repository skipped

2006-02-19 Thread Jurek Blaszczyk
If I define in pom.xml my local repository but shut it down than Maven doesn' try to download dependency from central repository and throws an exception. If I change order of repositories or run my local repository but delete artifact from it everything works fine. It looks like M2 skips looking fo

Re: Plugin Classpath Problem

2006-02-19 Thread Brett Porter
Unfortunately at this time, plexus-utils is in the root classloader shared by all plugins. So version in $M2_HOME/core is the version you get regardless of dependencies. - Brett On 2/19/06, Brian Topping <[EMAIL PROTECTED]> wrote: > Howdy, > > I'm putting together some changes for the WAR plugin

Re: m1 and m2 repos @ apache and ibiblio

2006-02-19 Thread Brett Porter
Robert started this: http://www.apache.org/dev/release-publishing.html You might like to add to that. Thanks, Brett On 2/20/06, Eddie O'Neil <[EMAIL PROTECTED]> wrote: > Wendy-- > > Perfect; thanks for the explanation. I'll look into putting this > into some ASF documentation somewhere so it'

Re: [m2] Compiling JSPs

2006-02-19 Thread Stephen Duncan
Looks like there is a 1.3 version in the main repository: http://www.ibiblio.org/maven2/org/codehaus/mojo/jspc-maven-plugin/1.3/ -Stephen On 2/19/06, Matt Raible <[EMAIL PROTECTED]> wrote: > That looks to be what I'm looking for. However, I can't seem to get it. > > I've added the following to p

Re: [m2] Compiling JSPs

2006-02-19 Thread Matt Raible
That looks to be what I'm looking for. However, I can't seem to get it. I've added the following to pom.xml: Maven Snapshots http://snapshots.maven.codehaus.org/maven2 true false Maven Snapshots http://sn

Re: taglibs vs jstl

2006-02-19 Thread Srepfler Srgjan
Brian E. Fox wrote: Seems to me like taglibs should have a dependency on jstl in it's pom. +1 - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: m1 and m2 repos @ apache and ibiblio

2006-02-19 Thread Eddie O'Neil
Wendy-- Perfect; thanks for the explanation. I'll look into putting this into some ASF documentation somewhere so it's institutionalized. :) Cheers, Eddie On 2/19/06, Wendy Smoak <[EMAIL PROTECTED]> wrote: > On 2/19/06, Eddie O'Neil <[EMAIL PROTECTED]> wrote: > > > I'm adding support for

Re: [m2] HibernateDoclet

2006-02-19 Thread Jacek Laskowski
2006/2/19, [EMAIL PROTECTED] <[EMAIL PROTECTED]>: > hi Jacek, > > it seems you published interesting stuff about maven and xdoclet on your > blog, too bad it's in written in polish ;-) Thanks! Well, it's not too late to learn Polish ;) What exactly are you looking for wrt Maven2 + XDoclet2 Hiberna

Re: m1 and m2 repos @ apache and ibiblio

2006-02-19 Thread Wendy Smoak
On 2/19/06, Eddie O'Neil <[EMAIL PROTECTED]> wrote: > I'm adding support for uploading a release to Maven1 and 2 > repositories to Beehive's Ant build and have what is really an ASF > process question. > In order to upload JARs to *both* of these repositories: > > http://www.ibiblio.org/maven <-

Re: [m2] HibernateDoclet

2006-02-19 Thread [EMAIL PROTECTED]
hi Jacek, it seems you published interesting stuff about maven and xdoclet on your blog, too bad it's in written in polish ;-) Fred Jacek Laskowski wrote: 2006/2/15, Frederic Close <[EMAIL PROTECTED]>: hi, I have an application using hibernate (2.1) and I used an ant task + xdoclet in o

m1 and m2 repos @ apache and ibiblio

2006-02-19 Thread Eddie O'Neil
All-- I'm adding support for uploading a release to Maven1 and 2 repositories to Beehive's Ant build and have what is really an ASF process question. In order to upload JARs to *both* of these repositories: http://www.ibiblio.org/maven <--- Maven 1 http://www.ibiblio.org/maven2 <--- Maven 2 i

Multiprojects and remote basedir repository (inconsistent behaviour bug?)

2006-02-19 Thread Geoffrey De Smet
I am having a strange thing break: This worked: Parent pom: spring-richclient-core ... springRichclientRepository Spring rich client repository file:${basedir}/maven2repository true

Re: [m2] Compiling JSPs

2006-02-19 Thread Stephen Duncan
Oh, and respond back with what you learn on it; I was hoping to start playing with it soon... -Stephen On 2/19/06, Stephen Duncan <[EMAIL PROTECTED]> wrote: > Matt, > > I haven't tried it, but there's a jspc plugin on the mojo.codehaus.org > site: http://mojo.codehaus.org/jspc-maven-plugin/usage.

Re: [m2] Compiling JSPs

2006-02-19 Thread Stephen Duncan
Matt, I haven't tried it, but there's a jspc plugin on the mojo.codehaus.org site: http://mojo.codehaus.org/jspc-maven-plugin/usage.html that seems to do what you're asking. -Stephen On 2/19/06, Matt Raible <[EMAIL PROTECTED]> wrote: > Is there a plugin that does compilation of JSPs and adding e

Re: m2 compiler plugin and adding additional gen/src folder

2006-02-19 Thread Cyrille Le Clerc
Hello Gautham, I will reword what you said to be sure I clearly understood. You want to : 1) integrate the websphere ejb code generation task in the "generate-sources" phase of your maven2 project 2) ensure that these previously generated sources are included in the "compile" phase of the pr

[ANN] Maven Source Plugin 1.0 for Maven 1.x released

2006-02-19 Thread Stephane Nicoll
We are pleased to announce the Maven Source Plugin 1.0 release! http://maven.apache.org/maven-1.x/reference/plugins/source/ This plug-in builds an archive of the source code and supports for further integration in IDEs. To automatically install the plugin, type the following on a single line: m

Re: [m1] Any plans for latest PMD into PMD plugin?

2006-02-19 Thread Arnaud HERITIER
> > (and thanks for the page link - I did not know that existed!) We opened a thread some weeks ago about this page [1] to encourage m1 users to give us their feedback. We didn't have a lot of success ;-) Arnaud [1] http://docs.codehaus.org/display/MAVEN/Maven+1.1+plugins --

Plugin Classpath Problem

2006-02-19 Thread Brian Topping
Howdy, I'm putting together some changes for the WAR plugin for resource filtering, and I'm having some problems with classpaths. I've attached a stacktrace. The class that is being searched is in plexus- utils-1.2-SNAPSHOT on ibiblio, and it appears from the output snippet below that th