[m2] How do I run reports in a sub-project

2006-07-05 Thread Eric Brown
I have a project structure like this: head/ - docs - libs/ -- libA -- libB If I cd to head/libs and run "mvn -Daggregate=true jxr:jxr", libs/ target/site/xref has exactly what I expect. However, I really want to be able to do this from head/docs and have the xrefs for libA & libB. I'm not s

Re: [m2] Plugin Version in POM

2006-07-05 Thread leahpar
Hello, I wonder how many peolple are trying to do the same thing ^^ I have exactly the same concern : reproductible build, user pom as simple as possible. I have already try from best to least (personal point on view, it changes everyweek ...) *one super pom with predefine corporate config, flavo

RE: Email Limiting?

2006-07-05 Thread Vincent Massol
Hi Mark, I'd love this too. See http://jira.codehaus.org/browse/CONTINUUM-634. You can even vote for it ;-) Unfortunately there's no "fix for" right now for this issue meaning there's no plan to include it as yet. Thanks -Vincent > -Original Message- > From: news [mailto:[EMAIL PROTECTE

Re: How could i add external jar to maven.compile.classpath without use dependency setting in pom.xml

2006-07-05 Thread Roland Asmann
Provided still needs to have the artifact in the repository! What you might want to try is the system-scope, there you define the location of your artifact in the POM and there's no need to install the thing in you repo! Roland On Tuesday 04 July 2006 23:09, Andrew Williams wrote: > have you

Re: GoogleTalk notification

2006-07-05 Thread Jeff Mutonho
On 7/5/06, Jeff Mutonho <[EMAIL PROTECTED]> wrote: On 7/4/06, Emmanuel Venisse <[EMAIL PROTECTED]> wrote: > no, you don't need to restart it for all changes done throught the web interface, only for > modification in application.xml. > > For google talk, you need to define the jabber domain like

mvn install with sources?

2006-07-05 Thread Aleksei Valikov
Hi. I'd like to get sources for my jar artifacts installed into the local repo. I usually do mvn (clean) install, but this only builds and copies the binary jar into the repo. What should I do to get sources along? Bye. /lexi --

Re: [m2] Frustration getting Maven 2 and Hibernate working together

2006-07-05 Thread Jose Gonzalez Gomez
Paul, I'm trying to do the same, and I'm facing some troubles, maybe you can help me... First of all, I haven't been able to find one of the dependencies of the Hibernate Annotations packages: javax.persistence:ejb:jar:3.0-public-draft-20060502. This seems to be an implementation of a public draf

Re: idea plugin and general plugin q

2006-07-05 Thread AK
Hi, thanks for answer! I'm using 2.0 idea plugin, and the problem appearred after I updated from 2.0-beta1 of idea plugin. Does anyone has this problem? Hi, what version of the idea plugin are you using? Mine is working just fine. For plugin information, you can look here: http://maven.ap

Re: Assembly and multi-levels multi-modules

2006-07-05 Thread Gilles Scokart
baerrach wrote: > > > My file layout looks like: > ROOT > - pom.xml > - module1 > - modulen > - build > - pom.xml > > Where the build/pom.xml will contain the assembly of everything that > is needed from the other modules. > > I don't think putting the assembly plugin and descriptor in the

Re: M2: spring-orm

2006-07-05 Thread christophe blin
thanks, I missed that thing. Nicolas De Loof a écrit : > > Spring-orm does not exist in post M3 version. It has been splited into > spring-jdo, spring-ojb, spring-ibatis... > > christophe blin a écrit : >> Hi, >> >> I'd like to know why the spring-orm version 2.0-m4 is not ibiblio while >> spring-

Re: mvn install with sources?

2006-07-05 Thread Martijn Dashorst
Attach the sources plugin to the install phase of the build. true org.apache.maven.plugins maven-source-plugin

activating profiles in a module

2006-07-05 Thread Jeff Mutonho
I've got two profiles for deploying a war to either jboss or tomcat .The jboss deploy is called "jboss4x-deploy' and the tomcat one "tomcat5-deploy".The profiles are defined in my web-module ("eportal-web") pom.xml.My super POM does not define any profiles.Doing a "mvn install" from my top leve

How to reduce build & deploy time???

2006-07-05 Thread narayan dhumale
  Hi, I am using Maven 2.0.3 for building my project.In this project there are multiple projects which builds after based on which my project builds(using jar's of them).Now .war file which i build is packed in the .ear file made finally. Every time i have to build the whole project in order to

Re: Cobertura plugin using version 1.7

2006-07-05 Thread tulasi
HI, when i am mvn test for mvn site, getting Error. Here I have enclosed my configuration and error. org.codehaus.mojo cobertura-maven-plugin target/cobertura/instrumented-classes target/cobertura/report

[M2] Overriding dependencies

2006-07-05 Thread Jose Gonzalez Gomez
Hi there, Is there any way to override a dependency in a project you depend on? I know you can control which version of a dependency you use using the dependency management section, I mean the folowing: Project A +-> Depends on project B +-> Depends on project C Is there any way to point

Re: mvn install with sources?

2006-07-05 Thread Stephen Duncan
Run "mvn -DperformRelease=true clean install" - Stephen On 7/5/06, Aleksei Valikov <[EMAIL PROTECTED]> wrote: Hi. I'd like to get sources for my jar artifacts installed into the local repo. I usually do mvn (clean) install, but this only builds and copies the binary jar into the repo. What sho

Re: [M2] Overriding dependencies

2006-07-05 Thread Stephen Duncan
From Project A? In project A's pom: project-b project-c project-d - Stephen On 7/5/06, Jose Gonzalez Gomez <[EMAIL PROTECTED]> wrote: Hi there, Is there any way to override a dependency in a project you depend on? I know you can control which version of a dependency you

Re: [M2] Overriding dependencies

2006-07-05 Thread Jose Gonzalez Gomez
Thanks a lot, that has worked perfectly. 2006/7/5, Stephen Duncan <[EMAIL PROTECTED]>: From Project A? In project A's pom: project-b project-c project-d - Stephen On 7/5/06, Jose Gonzalez Gomez <[EMAIL PROTECTED]> wrote: > Hi there, > > Is there any way to override

Re: extending Modello

2006-07-05 Thread Trygve Laugstøl
Tony Hillerson wrote: For a flash or flex project using java it's a common need to generate DTOs in both java and actionscript. I want to write the modello plugin to do that, but I'm not sure where to start. Can anyone point me in the right direction? Source for the modello plugin and the differe

M1 & Snapshots

2006-07-05 Thread Shute, James
Hi, I've got 2 projects (both Maven 1.x) where project A depends on project B. Now at the moment I've got them both building in Continuum independently which is ok, but what I'd really like is that when building A it uses the latest build of B done by Continuum. Ideally a change to B would also

Re: How could i add external jar to maven.compile.classpath without use dependency setting in pom.xml

2006-07-05 Thread Andrew Williams
apologies, I missed the last line for some reason. Indeed, system is what you want :) A On Wed, Jul 05, 2006 at 10:02:31AM +0200, Roland Asmann wrote: > Provided still needs to have the artifact in the repository! What you might > want to try is the system-scope, > there you define the location

RE:Build process

2006-07-05 Thread Vinay Kumar
Hi, I am still not able to checkout .when I am trying to checkout using command mvn scm:checkout then it throws error: "'svn' is not recognized as an internal or external command". I am using TortoiseSVN and putting bin directory of this doesn't resolves problem. my pom contains: ... ..

Re: assembly plugin problem

2006-07-05 Thread Arnaud Bailly
nazim chakik <[EMAIL PROTECTED]> writes: May be the following assembly descriptor can help you: bin tar.gz zip false pom.xml src/ true regards, -- OQube < software engineering \ génie logiciel > Arnaud Bailly, Dr. \web>

Re: cobertura - Getting Error

2006-07-05 Thread Arnaud Bailly
tulasi <[EMAIL PROTECTED]> writes: > HI, > > when i am mvn test for mvn site, getting Error. Here I have enclosed my > configuration and error. > > > org.codehaus.mojo > cobertura-maven-plugin > > >

Re: M1 & Snapshots

2006-07-05 Thread Emmanuel Venisse
Shute, James a écrit : Hi, I've got 2 projects (both Maven 1.x) where project A depends on project B. Now at the moment I've got them both building in Continuum independently which is ok, but what I'd really like is that when building A it uses the latest build of B done by Continuum. Ideall

Re: cobertura - Getting Error

2006-07-05 Thread tulasi
Hi, According your sugguestion, i made config like this. why i dont know under classes folder repeatedly genereted-classes folder is creating. is thr configuration problem?. if you want to check i ll give you my complete pom.xml org.codehaus.mojo

[M2] webapp

2006-07-05 Thread christophe blin
Hi, My first question is where do I put java source files in a webapp (i.e archetype = war) ? Should I create a directory src/main/java ? Or maybe I should create another module to hold the java sources ? Then, a small question but maybe difficult to answer : how can I integrate maven into eclips

Maven Day in Paris

2006-07-05 Thread Damien Viel
Hi all, For people who are in Paris (France) during this summer, a Maven Day is orgenized next Tuesday. Check this for more informations : http://www.application-servers.com/comments.do?reqCode=readComments&sid=2006-06-16-12:04:52 Damien -- -- D

Re: activating profiles in a module

2006-07-05 Thread Jeff Mutonho
On 7/5/06, Jeff Mutonho <[EMAIL PROTECTED]> wrote: I've got two profiles for deploying a war to either jboss or tomcat .The jboss deploy is called "jboss4x-deploy' and the tomcat one "tomcat5-deploy".The profiles are defined in my web-module ("eportal-web") pom.xml.My super POM does not define

RE: Maven Day in Paris

2006-07-05 Thread Sharma, Jaikumar
Would have been informative, if page under this url would have been in english ;-) -Original Message- From: Damien Viel [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 05, 2006 5:18 PM To: Maven Users List Subject: Maven Day in Paris Hi all, For people who are in Paris (France) during

Re: activating profiles in a module

2006-07-05 Thread Jo Vandermeeren
On 7/5/06, Jeff Mutonho <[EMAIL PROTECTED]> wrote: > I've got two profiles for deploying a war to either jboss or tomcat > .The jboss deploy is called "jboss4x-deploy' and the tomcat one > "tomcat5-deploy".The profiles are defined in my web-module > ("eportal-web") pom.xml. How do i configure

Re: Creating an EJB, then an EAR

2006-07-05 Thread Graham Leggett
On Wed, July 5, 2006 8:07 am, Tim Kettler wrote: > you should read the free maven book [1]. It is a very good introduction to > m2 and has a > chapter that shows an example of a J2EE application developed with maven. I can develop an app from scratch no problem, the problem comes about where an a

Re: Maven Day in Paris

2006-07-05 Thread Arnaud HERITIER
Always in French you have this page with the list of speakers : http://www.application-servers.com/conf/2006/mavenday/index.html Except for the presentation done by Jason in English, the rest will be in French. Arnaud On 7/5/06, Sharma, Jaikumar <[EMAIL PROTECTED]> wrote: Would have been infor

Re: activating profiles in a module

2006-07-05 Thread Jeff Mutonho
This ain't no hotline, you know.. Yeah , its a forum to grow M2 and to share knowledge Jeff GoogleTalk : ejbengine Skype: ejbengine Registered Linux user number 366042 - To unsubscribe, e-mail: [EMAIL PROTECTED] For

Pregoals in maven 2

2006-07-05 Thread Graham Leggett
Hi all, Does anyone know how the effects of a pregoal can be achieved with maven 2? I would like to attain ejb:ejb before any attempt to attain ear:ear. Regards, Graham -- - To unsubscribe, e-mail: [EMAIL PROTECTED] For addit

Re: activating profiles in a module

2006-07-05 Thread Jeff Mutonho
On 7/5/06, Jo Vandermeeren <[EMAIL PROTECTED]> wrote: > > On 7/5/06, Jeff Mutonho <[EMAIL PROTECTED]> wrote: > > I've got two profiles for deploying a war to either jboss or tomcat > > .The jboss deploy is called "jboss4x-deploy' and the tomcat one > > "tomcat5-deploy".The profiles are defined i

assembly - renaming files

2006-07-05 Thread Wojciech Biela
Hello, I refined my problem and now it comes down to this: I have my submodules installed in the repository as my custom type "mod", I did this through "attach-artifacts" and added ${project.build.directory}/${project.build.finalName}.jar mod now in the main project I set the dependencies t

Re: activating profiles in a module

2006-07-05 Thread Jo Vandermeeren
On 7/5/06, Jeff Mutonho <[EMAIL PROTECTED]> wrote: > > This ain't no hotline, you know.. > Yeah , its a forum to grow M2 and to share knowledge Sure thing, but it is no replacement for google, nor for the available documentation. I'm sure you're familiar with the concept "RTFM".. Perhaps thi

Re: [M2] webapp

2006-07-05 Thread Geoffrey De Smet
Download and read the free m2 book from mergere.com :) It has all stuff nicely documented christophe blin wrote: Hi, My first question is where do I put java source files in a webapp (i.e archetype = war) ? Should I create a directory src/main/java ? Or maybe I should create another module to h

Re: activating profiles in a module

2006-07-05 Thread Jeff Mutonho
Sure thing, but it is no replacement for google, nor for the available documentation. I'm sure you're familiar with the concept "RTFM".. With all due respect, Jo , I'm not sure what you're on about and what your realproblem is.I didnt hold a gun to your head forcing you to respond.You could've e

Re: [m2] Frustration getting Maven 2 and Hibernate working together

2006-07-05 Thread Paul Kuykendall
Jose, I found this in a blog somewhere (I didn't bookmark it, just copied it into a "tips and tricks" email I sent myself at work). I still ran into problems with the hibernate3-maven-plugin complaining it couldn't resolve a dependency somewhere down the line to maven-hibernate3-plugin. It coul

Re: [m2] Frustration getting Maven 2 and Hibernate working together

2006-07-05 Thread Jose Gonzalez Gomez
Paul, It seems I've been able to run the hibernate plugin from the mojo successfully (at least it has created a table with a pair of attributes from an annotated class). I'm going out in a few minutes, so if you're interested in how I did it drop me a line (or drop it to the list) and I'll post e

REPOST: Multiple passes of filtering

2006-07-05 Thread Carlos.Fernandez
I am doing something very similar to rudy. My application accesses its properties via JNDI - so each environment would have its own custom tailored set of properties. I would like the build process to batch filter the properties files for each environment and include then in the artifact. I have

Re: [m2] Frustration getting Maven 2 and Hibernate working together

2006-07-05 Thread Paul Kuykendall
I would be more appreciative than you can ever imagine if you could send that information. Thanks! /Paul On 7/5/06, Jose Gonzalez Gomez <[EMAIL PROTECTED]> wrote: Paul, It seems I've been able to run the hibernate plugin from the mojo successfully (at least it has created a table with a pair

Re: [M2] webapp

2006-07-05 Thread christophe blin
Hi, the nicely documented stuff (that I already read BTW) talks about jetty and does not mention debugging... My concern is to run the war under tomcat and/or jboss with the associated plugins in Eclipse in order to benefit from the debug perspective. Maybe there is a solution to do this with jet

RE: [m2] Frustration getting Maven 2 and Hibernate working together

2006-07-05 Thread Johann Reyes
Hello Paul Right now there is no snapshot version of the plugin since I have problems to deploy it to the snapshot server. So you have to download the source code of the plugin to your machine and do an "mvn install" that would install the plugin into your local repository. Then you just need to

Re: activating profiles in a module

2006-07-05 Thread Jeff Mutonho
Adding start-container pre-integration-test start deploy to the cargo plugin got it to work. -- Jeff Mutonho GoogleTalk : ejbengine Skype: ejbengine Registered Linux user number 366042 ---

Problem with maven-changes-plugin

2006-07-05 Thread Grégory PAUL
Hi, I try to use the maven-changes-plugin with a "changes.xml" file (like http://www.javaworld.com/javaworld/jw-02-2006/jw-0227-maven-p2.html on part "Change and configuration management") but I've got a NullPointerException. --

Re: Pregoals in maven 2

2006-07-05 Thread Roland Asmann
Bind your plugins to a phase right BEFORE the phase you wanted a pre-goal of. e.g. pre-goal for 'install', bind to 'verify'. If you need multiple plug-ins to be pre-goals to each other, add them to the SAME phase in the order in which you want them run. Roland On Wednesday 05 July 2006 14:26

Re: Problem with maven-changes-plugin

2006-07-05 Thread Jochen Wiedmann
The current version is 2.0.2-SNAPSHOT, which works for me with Maven 2.0.4. Unfortunately, and AFAIK, there is no snapshot available somewhere. In other words, you need to fetch the sources from http://svn.apache.org/repos/maven/sandbox/plugins/maven-changes-plugin (URL written from memory)

Re: Problem with maven-changes-plugin

2006-07-05 Thread Grégory PAUL
Ok, thanks a lot. I'll try that ! Grégory Jochen Wiedmann a écrit : The current version is 2.0.2-SNAPSHOT, which works for me with Maven 2.0.4. Unfortunately, and AFAIK, there is no snapshot available somewhere. In other words, you need to fetch the sources from http://svn.apache.org/rep

Re: Cobertura plugin using version 1.7

2006-07-05 Thread leahpar
hello, I don't get the instrument goal but please find below a simple example working here ... it's all help i can give. cordialement org.codehaus.m

RE: [m2] Frustration getting Maven 2 and Hibernate working together

2006-07-05 Thread Johann Reyes
Hello Paul Actually an update. I was able to go around the bug that was stopping me from deploying and was able to successfully deploy a snapshot. So now a hibernate3-maven-plugin is available to use. Regards Johann Reyes -Original Message- From: Paul Kuykendall [mailto:[EMAIL PROTECTED

Maven2 and WSAD

2006-07-05 Thread Ken . Ballard
Are a lot of people out there using Maven with WSAD? I've been using Maven with MyEclipse as my IDE, but I might be moving into an environment that uses WSAD. WSAD is there to stay, so I don't want to suggest Maven if they don't play nicely together. Obviously, at the same time, I don't want to los

RE: Maven2 and WSAD

2006-07-05 Thread Mike Perham
Please search the archives. This topic has been discussed numerous times. Short answer: it works fine. > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > Sent: Wednesday, July 05, 2006 9:30 AM > To: users@maven.apache.org > Subject: Maven2 and WSAD > > Are a lo

Re: assembly - renaming files

2006-07-05 Thread dan tran
You need the help form maven-dependency-plugin to prep the work before assembly started. -D On 7/5/06, Wojciech Biela <[EMAIL PROTECTED]> wrote: Hello, I refined my problem and now it comes down to this: I have my submodules installed in the repository as my custom type "mod", I did this th

Re: assembly - renaming files

2006-07-05 Thread Wojciech Biela
Regarding my first and major problem, at first I thought that changing the finalName to 123-${artifactId}-${version} would add the prefix, but I see that this only controlls the name of the *local* artifact, not the artifact that is installed in the repository, and then at a later step downloaded

Is it possible to configure a plugin from within another plugin that runs earlier in the lifecycle?

2006-07-05 Thread Russell, Mark
Is it possible to configure a plugin via code inside another plugin where the plugin being configured executes later in the lifecycle? Specifically I have a plugin that generates a bunch of source code, and based on its output it needs to configure the manifest of the jar that will be created.

Assembly and parent pom

2006-07-05 Thread Martijn Dashorst
All, If you have a project setup where all your projects have a common parent project, and some are dependend on the others, how can you accomodate the downloaders of your assemblies such that they still can build your project using maven if/when they are offline? Example setup: foo foo-parent

Re: [M2] webapp

2006-07-05 Thread Pete Marvin King
try turning on the remote debugging capability of your sevlet container's jvm by adding the following argument on the java command line : -Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8030 the jvm would block when passing these argum

Re: How to install artifact created with assembly artifact into Continuum's local repository

2006-07-05 Thread Mark Reynolds
Barrie Treloar wrote: On 7/5/06, Mark Reynolds <[EMAIL PROTECTED]> wrote: I have changed my multi-project build so it only builds the parent pom without --non-recursive. There are some double negatives here. Do you mean you have deleted your other projects from the continuum build and that th

Re: [m2] maven-jar-plugin-2.1 status?

2006-07-05 Thread Sebastien Cesbron
I am looking at the best solution for packaging my webstart application with maven and the webstart plugin seems promissing. I do not have easy access to the svn so I would like to know if there is any plan for releasing this first beta ? Thanx Seb On 7/4/06, jerome lacoste <[EMAIL PROTECTED]>

Re: assembly - renaming files

2006-07-05 Thread Wojciech Biela
Dan, Could you please point me to a location of any documentation on this matter or tell me how to use it to prep the work? Because a quick google for "maven-dependency-plugin" didn't reveal *any* insight in this matter ... TIA! Wojtek 2006/7/5, dan tran <[EMAIL PROTECTED]>: You need the help f

Re: [m2] maven-jar-plugin-2.1 status?

2006-07-05 Thread jerome lacoste
On 7/5/06, Sebastien Cesbron <[EMAIL PROTECTED]> wrote: I am looking at the best solution for packaging my webstart application with maven and the webstart plugin seems promissing. I do not have easy access to the svn so I would like to know if there is any plan for releasing this first beta ?

RE: assembly - renaming files

2006-07-05 Thread Ian Springer
Here's a link - http://mojo.codehaus.org/dependency-maven-plugin/introduction.html Unfortunately, I haven't used it yet myself, so I can't offer any tips. Ian | -Original Message- | From: Wojciech Biela [mailto:[EMAIL PROTECTED] | Sent: Wednesday, July 05, 2006 11:08 AM | To: Maven Use

Re: How to install artifact created with assembly artifact into Continuum's local repository

2006-07-05 Thread Mark Reynolds
Emmanuel, I don't think this is working as expected. Emmanuel Venisse wrote: The internal continuum repo (that can be configured in the configuration screen) is independant of local/remote maven repository. Continuum copy artifacts in it (even without deploy goal) when the build is in success

Re: assembly - renaming files

2006-07-05 Thread Wojciech Biela
Ha! I know why google didn't find anything googling for "dependency-maven-plugin" truly finds this link you mention, thank you very much Ian, I'll look into it any tips are still more than welcome Wojtek 2006/7/5, Ian Springer <[EMAIL PROTECTED]>: Here's a link - http://mojo.codehaus.org/depen

Please need help to run the sample.plugin guide

2006-07-05 Thread Elid OR
Hi all, I'm new with maven 2, but I use to develop a maven 1 plugin. So my config is : OS : Linux ubuntu 2.6.15-25-686 Java : version "1.5.0_06" Maven : version 2.0.4 So I'm trying to run the plugin development guide : http://maven.apache.org/guides/plugin/guide-java-plugin-development.html E

Re: assembly - renaming files

2006-07-05 Thread Wojciech Biela
OK, I looked into the docs for the dependency-maven-plugin and unfortunately didn't find anything of use in my situation. Dan if you would be so kind and elaborate a little on how I could do it with this plugin I would be truly grateful. I don't see how the dependency:copy-dependencies or depend

Re: Problem with maven-changes-plugin

2006-07-05 Thread Grégory PAUL
Ok, now it's working. By the way, the good URL to check out sources for maven-changes-plugin is : svn checkout http://svn.apache.org/repos/asf/maven/sandbox/plugins/maven-changes-plugin Thanks a lot Jochen, Grégory Jochen Wiedmann a écrit : The current version is 2.0.2-SNAPSHOT, which work

Re: assembly - renaming files

2006-07-05 Thread dan tran
dependency:copy allows you to rename the artifact, check out ArtifactItem javadoc -D On 7/5/06, Wojciech Biela <[EMAIL PROTECTED]> wrote: OK, I looked into the docs for the dependency-maven-plugin and unfortunately didn't find anything of use in my situation. Dan if you would be so kind and

Re: [m2] maven-jar-plugin-2.1 status?

2006-07-05 Thread Sebastien Cesbron
Ok, On this page http://docs.codehaus.org/display/MOJO/Webstart+Plugin I saw that the plugin was not in the snapshot repo so I did not checked it. Now I have a dependency error because webstart plugin need version 0.3+ of keytool but there is only snapshots version of keytool : do I have somethin

FW: maven-pmd-plugin can't find my source files

2006-07-05 Thread Andrew-A . Davies
Hi Doug I have installed PMD locally and executede against code; successfully generating report. I have extracted a couple of the rulesets from the pmd-3.3.jar and have the the plugin configured as follows ... org.apache.maven.plugins maven-pmd-plugin

Re: [m2] Frustration getting Maven 2 and Hibernate working together

2006-07-05 Thread ben short
Johann , Im trying to use the hibernate3 plugin but get the following error. The plugin 'org.codehaus.mojo.hibernate3:hibernate3-maven' does not exist or no valid version could be found Below is my pom file http://maven.apache.org/POM/4.0.0"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instanc

Re: [m2] Frustration getting Maven 2 and Hibernate working together

2006-07-05 Thread ben short
Sorry the error is actually... The plugin 'org.codehaus.mojo:hibernate3-maven-plugin' does not exist or no valid version could be found On 7/5/06, ben short <[EMAIL PROTECTED]> wrote: Johann , Im trying to use the hibernate3 plugin but get the following error. The plugin 'org.codehaus.mojo.h

RE: maven-pmd-plugin can't find my source files

2006-07-05 Thread Mike Perham
It sounds like you are trying to use a ruleset from an older version and the PMD code is no longer there to support the old rule(s). Try removing the rulesets and I bet it will work fine. > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > Sent: Wednesday, July 05

Webstart plugin

2006-07-05 Thread Sebastien Cesbron
A question about this plugin : - Is there somewhere a "template.vm" example file I can take as a basis for mine ? Thanx Seb - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: assembly - renaming files

2006-07-05 Thread Wojciech Biela
hmmm, true, true, thank you Dan!, I missed that, I feel I must go home and take a rest ;) ... , anyway still that leaves me with the question of how to reach that arbitrary prefix assigned in the pom file of that dependency? I feel there is no such way and I just have to use the dependency:copy a

Re: Webstart plugin

2006-07-05 Thread Tim Kettler
Hi, it's a normal .jnlp file where these ($dependencies, $mainClass, $outputFile) variables get replaced with the actual content. It could look something like this: My Title Vendor Description $dependencies

RE: [m2] Frustration getting Maven 2 and Hibernate working together

2006-07-05 Thread Johann Reyes
Hello Ben I would remove the following lines from the pom.xml > - > org.codehaus.mojo > hibernate3-maven-plugin > 1.0-SNAPSHOT > compile > > > - > - > Maven Snapshots > http://snapshots.maven.codehaus.org/maven2/ > - > true > > - > false > > > > - > - >

Java Mojo parameter question

2006-07-05 Thread Mykel Alvis
If I have the following parameters in my mojo (among others) - /** * Base directory of work for the wscompile process. * @parameter default-value="${project.build.directory}/generated-sources/jaxrpc-wscompile" * @required */ private String base; /** * Both? *

Re: Java Mojo parameter question

2006-07-05 Thread Mykel Alvis
Oops. I changed the type from File to String between the time I generated the plugin.xml. Sorry. The type of base should be "File". On 7/5/06, Mykel Alvis <[EMAIL PROTECTED]> wrote: If I have the following parameters in my mojo (among others) - /** * Base directory of work for

Re: [m2] Frustration getting Maven 2 and Hibernate working together

2006-07-05 Thread ben short
Dont i need the Repository and pluginRepository elements to tell maven to get the plugin from the codehaus snapshot repo? Ben On 7/5/06, Johann Reyes <[EMAIL PROTECTED]> wrote: Hello Ben I would remove the following lines from the pom.xml > - > org.codehaus.mojo > hibernate3-maven-plugin

Re: Maven Day in Paris

2006-07-05 Thread Peter Pilgrim
Arnaud HERITIER wrote: Always in French you have this page with the list of speakers : http://www.application-servers.com/conf/2006/mavenday/index.html Except for the presentation done by Jason in English, the rest will be in French. Hi I have met Jason van Zyl in London this lunchtime, as he

[OT][ANN] JAVAWUG BOF XX / Oracle City of London / 13th July 2006 @ 7pm

2006-07-05 Thread Peter Pilgrim
Hi All I would like announce the twentieth birds-of-a-feather (BOF 20) of the Java Web Users Group. The event will take place at Oracle City Of London One South Place London, England EC2M 2RB. The feature speakers: Emmanuel Okyere

Re: Java Mojo parameter question

2006-07-05 Thread Mykel Alvis
Sorry in advance for the long post. I'm attaching the entirety of the pom and the mojo I'm currently working on. It's copied, more or less verbatim, from the Better Builds java example with added stuff since I'm generating code. Doing a mvn install generates the plugin.xml specified below. Not

Re: assembly - renaming files

2006-07-05 Thread dan tran
I you need to repeating bunch of dependecy:copy execution in a submodules, I's suggest that delegate a maven to prepare that stagement area and aother other projects can directly reference it via relative path, or via local repository ( get that maven project to assemable a zip file that other mo

Muliple sub-projects - want to produce a single jar

2006-07-05 Thread Ed Ross
This really shouldn't be this hard. I have several (5) sub-projects which is following the maven "best practices" (I think). I just want to product a SINGLE jar, not 5 little jars. I've been trying to understand the assembly stuff, but can not seem to get all of the projects included in the re

[m2] [javadoc] javadoc for tests classes

2006-07-05 Thread Raphaël Piéroni
Hello, Is there a way to generate the javadoc for the sources and for the test sources in a site ? And is it therefore possible to have the test javadoc report to have its own link in the site menu ? Thanks in advance for any help. Regards. Raphaël

Desable compile phase during mvn eclipse:eclipse

2006-07-05 Thread Patrick GIRY
Some one can he indicate to me how to stop the compile process during mvn eclipse:eclipse execution. I have try this bu it's not work mvn -DdownloadSources=true -Dwtpversion=1.0 -Dnocompile=true eclipse:eclipse

Re: [m2] Frustration getting Maven 2 and Hibernate working together

2006-07-05 Thread ben short
Fixed it. I needed to add the version as follows. org.codehaus.mojo hibernate3-maven-plugin 1.0-SNAPSHOT /src/main/resources/hibernate.cfg.xml

[M2] Changelog using src folder instead of project root?

2006-07-05 Thread Manfred Moser
Hi! I am having a problem with changelog report plugin from Maven 2 running under continuum. For some reason the scm working directory is set to the main source folder only rather than getting a change log for the whole project tree. The relevant output from mvn -X -e site is INFO] Generat

Re: cobertura - Getting Error

2006-07-05 Thread Arnaud Bailly
tulasi <[EMAIL PROTECTED]> writes: > Hi, > > According your sugguestion, i made config like this. why i dont know under > classes folder repeatedly genereted-classes folder is creating. is thr > configuration problem?. if you want to check i ll give you my complete > pom.xml My basic configur

Re: assembly plugin problem

2006-07-05 Thread Barrie Treloar
On 7/5/06, Arnaud Bailly <[EMAIL PROTECTED]> wrote: nazim chakik <[EMAIL PROTECTED]> writes: May be the following assembly descriptor can help you: bin tar.gz zip false pom.xml src/ true I've never used module sets. I

Re: How to install artifact created with assembly artifact into Continuum's local repository

2006-07-05 Thread Barrie Treloar
On 7/6/06, Mark Reynolds <[EMAIL PROTECTED]> wrote: Emmanuel, I don't think this is working as expected. Emmanuel Venisse wrote: > The internal continuum repo (that can be configured in the configuration > screen) is independant of local/remote maven repository. Continuum copy > artifacts in it

RE: [m2] Frustration getting Maven 2 and Hibernate working together

2006-07-05 Thread Johann Reyes
Actually yeah, you don't need to specify the repositories. For my project this is the only reference that I have for the plugin: org.codehaus.mojo hibernate3-maven-plugin /src/main/resources/hibernate.cfg.xml src/main/res

Re: Assembly and parent pom

2006-07-05 Thread Barrie Treloar
On 7/6/06, Martijn Dashorst <[EMAIL PROTECTED]> wrote: All, If you have a project setup where all your projects have a common parent project, and some are dependend on the others, how can you accomodate the downloaders of your assemblies such that they still can build your project using maven if

HTTP compression/gzip for wagon providers(?)

2006-07-05 Thread Beyer,Nathan
Is there anyway to configure Maven 2 (the wagon providers?) to use compression for HTTP communication? In particular to accept compression when requesting dependencies and to use compression when sending data with WebDAV requests. I have my HTTP servers setup to compress output and decompress inpu

Re: documenting composite objects in plugins configuration

2006-07-05 Thread Dennis Lundberg
jerome lacoste wrote: Dennis, related to your comment in MJAR-46, are you aware of any Jira issue related to documenting composite objects fields of mojos ? I have a similar problem with some plugins whose configuration consist mostly of composite objects, making the generated plugin doc page us

Re: HTTP compression/gzip for wagon providers(?)

2006-07-05 Thread Brett Porter
No, but I just wrote that down the other day to think about, both on the wagon side and the repository manager side. It would good if you could file it in JIRA for Wagon. Thanks, Brett On 06/07/06, Beyer,Nathan <[EMAIL PROTECTED]> wrote: Is there anyway to configure Maven 2 (the wagon providers

  1   2   >