unclear explanation in Guide to Developing Java Plugins

2006-01-09 Thread Rice Yeh
Hi, When studing the article Guide to Developing Java Pluginsin http://maven.apache.org/guides/plugin/guide-java-plugin-development.html, there is unclear part on the explanation: the command used to execute a goal is "mv

Re: [m2] what should I set for Plugin Repository URL?

2006-01-09 Thread Man-Chi Leung
hi, may I know what is the different between /maven2/org/apache/maven/ plugins and /maven2/org/apache/maven Why there are 2 different file structures ??? I just did a comparison for both, they are very similar, but hosting more or less plugins!!! followings are only found in /maven

APT syntax question

2006-01-09 Thread John Fallows
Is it possible to make a hyperlinked image using APT syntax? I was able to get an image (figure) and linked text working, but could not discover the magic incantation for a linked image. :-) Kind Regards, John Fallows. -- Author Pro JSF and Ajax: Building Rich Internet Components http://www.apre

[m2] what should I set for Plugin Repository URL?

2006-01-09 Thread Man-Chi Leung
it seems that there are a several sites that I can get plugin. which one is the correct setting? 1) http://www.ibiblio.org/maven2/ 2) http://www.ibiblio.org/maven2/plugins/ 4) http://snapshots.maven.codehaus.org/maven2 5) http://snapshots.maven.codehaus.org/maven2/plugins what is the default?

[m2] RIFE library request

2006-01-09 Thread Srepfler Srgjan
Could someone please contribute the RIFE web framework library to ibiblio? http://rifers.org/downloads Srgjan - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: [m2] Debug output - what does it mean?

2006-01-09 Thread Brett Porter
Actually, its (f)ield injection vs (s)etter injection. - Brett On 1/10/06, Allan Ramirez <[EMAIL PROTECTED]> wrote: > Hi there, > > If I am not mistaken, > > (f) - is for file > (s) - is for string > > -allan > > [EMAIL PROTECTED] wrote: > > >I run Maven 2 in debug mode (using -X switch) to see s

Re: [m2] Debug output - what does it mean?

2006-01-09 Thread Allan Ramirez
Hi there, If I am not mistaken, (f) - is for file (s) - is for string -allan [EMAIL PROTECTED] wrote: I run Maven 2 in debug mode (using -X switch) to see some plugin configuration. E.g.: ... [DEBUG] (f) outputDirectory = target/mhave/packaging/ [DEBUG] (s) directory = src/main/packa

M2 - add custom classpath to plugin compiler:compile

2006-01-09 Thread Sanjay Choudhary
Hi All, We have several JARS that are present in Websphere Lib folder. In my previous project we copied all these jars in maven local repository (we were using maven 1.0.2). Then defined each dependency in project.xml (was very tedious :-( ) In M2, is there a way to set the classpath while p

[maven-proxy] any shutdown script?

2006-01-09 Thread Man-Chi Leung
hi i started maven-proxy from solaris box $java -jar maven-proxy-standalone-SNAPSHOT-app.jar maven- proxy.properties when ever I need to stop it, the only way is to kill the process any better way to do it? any shutdown script? ~manchi ---

Re: [m2] Project with multiple artifacts as a result

2006-01-09 Thread dan tran
bind assembly:attach as the last execution in package phase, of course you need to configure your assembly descriptor. -D On 1/9/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > But there is no way for me to insert a new lifecycle phase? > > Chris > > Brett Porter <[EMAIL PROTECTED]> wrote:

Re: [m2] Project with multiple artifacts as a result

2006-01-09 Thread haginow2001-nabble
But there is no way for me to insert a new lifecycle phase? Chris Brett Porter <[EMAIL PROTECTED]> wrote: You can use the assembly plugin to do the distribution archive. However, it can't be attached to the lifecycle in its current release (a version that does is in SVN now and is being tested

Re: Using Maven2 Site Plugin for Java.Net site documentation?

2006-01-09 Thread John Fallows
Hi Brett, On 1/9/06, Brett Porter <[EMAIL PROTECTED]> wrote: > > Hi John, > > I think the answer is not to change the APT parsing, but allow mapping > level 1 to h3, level 2 to h4, etc (I think that's what you wanted?) It > still may be worth looking into. Yeah, I considered that, but don't thin

[m2] Javadoc plugin - using alternate UMLGraph doclet?

2006-01-09 Thread Wendy Smoak
How do I do this (from Ant): in m2? I tried configuring the javadoc plugin, org.apache.maven.plugins maven-javadoc-plugin gr.spinellis.umlgraph.doclet.UmlGraph

Re: [m2] Project with multiple artifacts as a result

2006-01-09 Thread Brett Porter
You can use the assembly plugin to do the distribution archive. However, it can't be attached to the lifecycle in its current release (a version that does is in SVN now and is being tested and documented). A workaround is to run: mvn assembly:assembly install which will still attach the assembly a

[m2] Project with multiple artifacts as a result

2006-01-09 Thread haginow2001-nabble
I admit it, I'm now completely confused about lifecycle phases and goals and packages. The first thing is that I need to create a JAR archive of my code. Ok, this works fine using the standard stuff. In a second step, I need to create a source code archive of my code. Ok, this I can get workin

Re: Plugin package naming

2006-01-09 Thread Charles Daniels
Thanks Brett, that sounds reasonable regarding the naming. Thanks also for pointing me to mojo.codehaus.org, but this is an m1 plugin. It looks like that's only for m2 plugins. Regarding setting up the maven site docs on java.net, I noticed another posting on this list (although related to m2) ab

Re: [m2] Maven2 building Eclipse plugins, features, and update sites

2006-01-09 Thread Srepfler Srgjan
Jim Babka wrote: Eclipse does provide some ant tasks, but they require that Eclipse is running. They have a way to run in headless mode, but you need to use a script that invokes Eclipse, and then tell Eclipse to run its antRunner process. As far as I can tell, there is no way to have ant run

Re: Plugin package naming

2006-01-09 Thread Brett Porter
net.java.project-name seems appropriate. I am currently in discussions with some folks about creating a sync form the java.net maven repository (though its only for m1 at this point). - Brett On 1/10/06, Charles Daniels <[EMAIL PROTECTED]> wrote: > Apache License 2.0, source will be available, d

Re: Using Maven2 Site Plugin for Java.Net site documentation?

2006-01-09 Thread Brett Porter
Hi John, I think the answer is not to change the APT parsing, but allow mapping level 1 to h3, level 2 to h4, etc (I think that's what you wanted?) It still may be worth looking into. Either way, these are core changes that would need to be investigated (please JIRA). In the interim, can you achi

RE: [m2] Maven2 building Eclipse plugins, features, and update sites

2006-01-09 Thread Jim Babka
First of all, how do you tell the assembly plugin what name to give to the JAR it creates? Second, how do you get that jar to be an artifact that gets put into the repository? I may be misunderstanding something here, so please bear with me. I believe that the file names of any artifacts generat

Re: RE : [m2] how to remove jar from .m2/repository

2006-01-09 Thread clark . rao
Dear, I agreee the plugin can remove plugin from local reposity. thanks. Tel: (020)36315358-328 Fax: (020)36315170 Yann Le Du

Using Maven2 Site Plugin for Java.Net site documentation?

2006-01-09 Thread John Fallows
Summary: I'm using the maven-site-plugin for Maven2 to generate the site documentation for a Java.Net project and the APT parser is choking on the syntax needed to get the desired look for the index page. org.codehaus.doxia.module.apt.AptParseException: expected SECTION1, found SECTION2 at line 2

Re: [m2] Maven2 building Eclipse plugins, features, and update sites

2006-01-09 Thread Brett Porter
Those docs definitely look half-done. The latter parts are just pastes of the defaults. Documentation is high on the list for the next assembly plugin release. The assembly produced would have to have a different name to the original JAR which you are packaging up. The version would be the same, t

Re: Plugin package naming

2006-01-09 Thread Brett Porter
How will the plugin be licensed? Is it intended to just be a binary distribution or will the source be available? Where will be the documentation be? How will people find out about it? I think your choice is probably influenced by these questions. One option, of course, is to propose it to mojo.co

Plugin package naming

2006-01-09 Thread Charles Daniels
Hi All, I am creating a plugin that I plan to eventually make available on ibiblio. In reading the instructions on creating an upload bundle (see http://maven.apache.org/maven-1.x/reference/repository-upload.html), I see that new projects must follow the package name rules and that the name must b

RE: [m2] Maven2 building Eclipse plugins, features, and update sites

2006-01-09 Thread Jim Babka
Thanks for getting back to me. I looked at assemblies, but quickly got stuck there as well. What does the assembly plugin do about a version number? Does it use the version number for the project? Since that is the same as the version number for the JAR, I would have do come up with a different

[m2] Additional Lifecycle Phases possible?

2006-01-09 Thread Chris Hagmann
Can I create new lifecycle phases (e.g. release-notes) and do I need to create a new lifecycle handler for that? Or can I simply do this by adding phases in my plexus descriptor? I'm not clear on that based on the documentation. Chris

[m2] Additional Lifecycle Phases possible?

2006-01-09 Thread haginow2001-nabble
Can I create new lifecycle phases (e.g. a phase called release-notes) and do I need to create a new lifecycle mapping object for that? Or can I simply do this by adding phases in my plexus descriptor? I'm not clear on that based on my documentation. Chris

Re: call for testers: scp wagon

2006-01-09 Thread Stephen Duncan
I tested with 2.0.1 plus the three new jars. And he said he tried the snapshot release. So I'd bet that it's something specific to his environment, like something going on with his server... -Stephen On 1/9/06, Brett Porter <[EMAIL PROTECTED]> wrote: > I believe other users were using the snaps

Re: [m2] Maven2 building Eclipse plugins, features, and update sites

2006-01-09 Thread Brett Porter
Hi Jim, Sorry for not replying sooner. I've not done this, and I'm not sur eif anyone else has, but we have certainly discussed it in the past. Members of the pde-build-dev team were here at one point. We'd appreciate any feedback you have on it. Some pointers: - the assembly plugin can create a

RE: [m2] Maven2 building Eclipse plugins, features, and update sites

2006-01-09 Thread Jim Babka
Eclipse does provide some ant tasks, but they require that Eclipse is running. They have a way to run in headless mode, but you need to use a script that invokes Eclipse, and then tell Eclipse to run its antRunner process. As far as I can tell, there is no way to have ant run these Eclipse tasks

Re: [m2] Custom resource configuration for plugin maven-resources-plugin?

2006-01-09 Thread haginow2001-nabble
Brett, I'll work on a nice use case. Give me some time for that. Is there then another plugin allows me to do copying & filtering? Chris Brett Porter <[EMAIL PROTECTED]> wrote: So they are not packaged? That's not what the resources plugin is for, and I'd rather not add that confusion to it. M

Re: Overwriting a goal in subproject

2006-01-09 Thread Henry Isidro
Dixit, Sandeep (ProSource Solutions) wrote: I apologize. Error on my part... false did work. I have one more question: Project structure: -- LEVEL 1: GENRIC_PROJ: has app server deploy goal LEVEL 1: PROJ_PARENT: inherits GENRIC_PROJ and SHOULD NOT inherit the deploy goal LEVEL 2

Re: [m2] Custom resource configuration for plugin maven-resources-plugin?

2006-01-09 Thread Brett Porter
So they are not packaged? That's not what the resources plugin is for, and I'd rather not add that confusion to it. Maybe we should add a new mojo to the resources plugin that does the same things, but is explicitly for out-of-package copies? We need to consider how to share the code appropriatel

RE: [M2] - maven-javadoc-plugin showPrivate bug

2006-01-09 Thread David Jackman
Oh, that's my problem. I was looking in MPJAVADOC instead of MJAVADOC. That's kind of confusing. The MPJAVADOC project should probably get renamed to clearly state it's the Maven 1 plugin (MJAVADOC is clear in its title). I found the bug I filed with its accompanying patch. It's http://jira.cod

Re: call for testers: scp wagon

2006-01-09 Thread Brett Porter
I believe other users were using the snapshot build of Maven itself rather than a 2.0.1 install + new wagon (which should have worked, but it does seem to be the difference). That's really all that should be required for a clean environment, other than to check you don't have special customisation

RE: call for testers: scp wagon

2006-01-09 Thread KC Baltz
Will do. I'll download 2.0.2 when it becomes available and try again. Is there a good series of steps for ensuring my environment is "clean"? I usually delete my repository and try not to specify any special extensions or mirrors unless I specifically need them for the test I'm running. I'm

Re: [m2] Custom resource configuration for plugin maven-resources-plugin?

2006-01-09 Thread haginow2001-nabble
Brett, I think this is a little more complex. I use the regular resources section in my POM to copy my resources to target/classes. This works all fine. But I also want to use the plugin to copy another set of resources during the lifecycle phase "package". During that phase, it should fetch th

Re: [M2] - maven-javadoc-plugin showPrivate bug

2006-01-09 Thread Brett Porter
http://jira.codehaus.org/browse/MJAVADOC-37 ? On 1/10/06, David Jackman <[EMAIL PROTECTED]> wrote: > I reported this problem earlier and included a patch. That was before > they had separate JIRA projects for the plugins, so I can't find the > issue now. I did see MPJAVADOC-37, which is marked a

Re: [m2] Custom resource configuration for plugin maven-resources-plugin?

2006-01-09 Thread Brett Porter
configuration error. The plugin configuration is not where the resources are meant to be given. I'll comment in the JIRA. - Brett On 1/10/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > I just found a bug related to this filed 2 days ago: > http://jira.codehaus.org/browse/MRESOURCES-8. > > A

Re: call for testers: scp wagon

2006-01-09 Thread Brett Porter
Hi KC, At this point we will be releasing the code as is. Please let us know if you continue to experience it after the 2.0.2 release, and we will pursue this in greater depth again with the jsch developers. - Brett On 1/10/06, KC Baltz <[EMAIL PROTECTED]> wrote: > No, I hadn't deleted anything

[ann] maven-surefire-plugin 2.1.2 released!

2006-01-09 Thread Jason van Zyl
Hi, The release notes for the surefire plugin can be found here: http://jira.codehaus.org/secure/IssueNavigator.jspa?reset=true&pid=11148&fixfor=12206 The accompanying Surefire release notes are here: http://jira.codehaus.org/secure/IssueNavigator.jspa?reset=true&pid=10541&fixfor=12213 -- jvz.

RE: [M2] - maven-javadoc-plugin showPrivate bug

2006-01-09 Thread David Jackman
I reported this problem earlier and included a patch. That was before they had separate JIRA projects for the plugins, so I can't find the issue now. I did see MPJAVADOC-37, which is marked as fixed. ..David.. -Original Message- From: Tim Davies [mailto:[EMAIL PROTECTED] Sent: Monday

Re: [m201] Plugin Dependency Configuration

2006-01-09 Thread Brett Porter
We should also allow them in the reporting section I imagine, for consistency. I will file it in JIRA. However, it should still take effect if you put a plugin definition in your build section with the dependencies and the rest remains in the reporting section. - Brett On 1/9/06, Kees de Kooter

Re: Doing a CVS checkout from within a Maven 1.0 script

2006-01-09 Thread dan tran
use maven-scm-plugin -D On 1/9/06, Michael Thomsen <[EMAIL PROTECTED]> wrote: > > Hi, > > I am looking for some information on how to perform a CVS checkout > from within a Maven script. This is part of an automated build system > that I am putting together and I would like to know if there is a

Doing a CVS checkout from within a Maven 1.0 script

2006-01-09 Thread Michael Thomsen
Hi, I am looking for some information on how to perform a CVS checkout from within a Maven script. This is part of an automated build system that I am putting together and I would like to know if there is any functionality available that would allow the Maven script to do an automated CVS checkout

Re: Hibernate & m2

2006-01-09 Thread Mick Knutson
1. Can you use xd1 and xd2 in m2 at the same time? If so, can you send me some xd2 samples so I can try to get the xd2 junit generator working in my m2? --- Thank You Mick Knutson Sr. Java/J2EE Consultant BASE logic, inc. (415) 648-1804 (S.F., CA) http://www.BASELogic.com Washington Mutual

[M1] 302 errors

2006-01-09 Thread Tim McCune
Anyone have any idea what's going on with ibiblio for the past few days? Getting URL: http://www.ibiblio.org/maven/asm/jars/asm-1.5.3.jar Received status code: 302 Location: http://www.ibiblio.org/maven2/asm/asm/1.5.3/asm-1.5.3.jar Error retrieving artifact from [http://www.ibiblio.org/maven/asm/j

[m2] XDoclet hibernate error with packaging the hibernate mapping

2006-01-09 Thread Mick Knutson
Here is what I have currently: destdir="${project.build.outputDirectory}" excludedtags="@version,@author,@todo,@see,@desc" verbose="true">

Re: [m2] Default Maven repository (iBiblio) really slow on a consistent basis?

2006-01-09 Thread haginow2001-nabble
Thanks, that helps. I just realized that the documentation has also been updated with the mirror list below. Sridhar Radhakrishnan <[EMAIL PROTECTED]> wrote: Check out the other mirrors listed there.. dotsrc.org http://mirrors.dotsrc.org/maven2 central

Re: [m2] Default Maven repository (iBiblio) really slow on a consistent basis?

2006-01-09 Thread Sridhar Radhakrishnan
Check out the other mirrors listed there.. dotsrc.org http://mirrors.dotsrc.org/maven2 central ggi-project.org http://ftp.ggi-project.org/pub/packages/maven2 central sunsite.dk http://mirrors.sunsite.dk/maven2 central

RE: [m2] Default Maven repository (iBiblio) really slow on a consistent basis?

2006-01-09 Thread haginow2001-nabble
The only mirror I know of is planetmirror.com, and it doesn't return 404 when it can't find an artifact. Hence pretty unusable (besides being at the other end of the world for me). If you can recommend me another mirror I'd be happy to try it out. Mike Perham <[EMAIL PROTECTED]> wrote: http://

RE: [m2] Default Maven repository (iBiblio) really slow on a consistent basis?

2006-01-09 Thread Mike Perham
http://maven.apache.org/guides/mini/guide-mirror-settings.html -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Monday, January 09, 2006 1:18 PM To: users@maven.apache.org Subject: [m2] Default Maven repository (iBiblio) really slow on a consistent basis? It lo

[m2] Debug output - what does it mean?

2006-01-09 Thread haginow2001-nabble
I run Maven 2 in debug mode (using -X switch) to see some plugin configuration. E.g.: ... [DEBUG] (f) outputDirectory = target/mhave/packaging/ [DEBUG] (s) directory = src/main/packaging ... What does the "(f)" and "(s)" stand for? Thanks, Chris

Re: [ot][m2] Anything to help get a hibernate object to export as Excel?

2006-01-09 Thread Matt Raible
This might work for you - it does for me. http://displaytag.sf.net Matt Bias alert: I've used this library for several years and helped it become open source on sourceforge. I don't do much development on it, but I do help with project administration. On 1/9/06, Mick Knutson <[EMAIL PROTECTED]

[ot][m2] Anything to help get a hibernate object to export as Excel?

2006-01-09 Thread Mick Knutson
I have a result set from hibernate that I want to also allow to be downloaded (from a jsp) as an Excel sheet. Is there anything in maven, spring, xdoclet that will give me this functionality fairly easily? --- Thank You Mick Knutson Sr. Java/J2EE Consultant BASE logic, inc. (415) 648-1804 (S

[m2] Default Maven repository (iBiblio) really slow on a consistent basis?

2006-01-09 Thread haginow2001-nabble
It looks as if iBiblio is very slow or even down most of the time. Do other people experience this as well and if so is there a plan to improve this? Chris

RE : download multi modules pom with url (viewCVS and cvs scm)

2006-01-09 Thread Olivier Lamy
Yes works by using HEAD (with viewCVS and FishEye) Sorry for noise. - Olivier -Message d'origine- De : Emmanuel Venisse [mailto:[EMAIL PROTECTED] Envoyé : lundi 9 janvier 2006 18:36 À : continuum-users@maven.apache.org Objet : Re: download multi modules pom with url (viewCVS and cvs sc

Re: [m2] Custom resource configuration for plugin maven-resources-plugin?

2006-01-09 Thread haginow2001-nabble
I just found a bug related to this filed 2 days ago: http://jira.codehaus.org/browse/MRESOURCES-8. Anybody can confirm this is a bug or is it simply a misconfiguration on my end? [EMAIL PROTECTED] wrote: I want to use the plugin maven-resources-plugin to copy some files in a non-default locatio

[m2] How to declare dependency tp ejb-client jar in POM

2006-01-09 Thread Peschier J. (Jeroen)
We have a project with an EJB module. With the maven-ejb-plugin we build both the ejb.jar and the ejb-client.jar. Works fine. But now we want to reference the client jar in our parent POM.

[m2] How to declare dependency to ejb-client jar in POM

2006-01-09 Thread Peschier J. (Jeroen)
We have a project with an EJB module. With the maven-ejb-plugin we build both the myEjb-0.1.jar and the myEjb-0.1-client.jar. It builds fine, but I noticed the client-jar gets installed/deployed in the same location as the ejb-jar. This seems to be problematic when we want to reference the client-

Re: [m2] Deploying 3 Party Jar to Maven-Proxy

2006-01-09 Thread dan tran
http://maven.apache.org/guides/mini/guide-deploy-ssh-external.html there are plenty of examples looking at the root poms of existing projects -D On 1/9/06, Man-Chi Leung <[EMAIL PROTECTED]> wrote: > > hi Dan, > > thanks, it is great! deploy:deploy-file is working fine! I am able > to deploy t

[m2] Custom resource configuration for plugin maven-resources-plugin?

2006-01-09 Thread haginow2001-nabble
I want to use the plugin maven-resources-plugin to copy some files in a non-default location during the lifecycle phase "package". I'm using a company-wide pom.xml (which is included into the project's pom.xml using ) to configure the plugin: Parent POM: ...

Re: [m2]release:prepare requires snapshots ?

2006-01-09 Thread dan tran
Could you: - remove release.property - run release:prepare -X this give you some idea how release plugin issues cvs command to do the checkin - Post the part where release:prepare checks in the changed pom.xml files -D On 1/9/06, Patrick O'shea <[EMAIL PROTECTED]> wrote: > > > Hi,

Re: Continuum not including profiles.xml

2006-01-09 Thread Emmanuel Venisse
Thanks. I don't have exactly the date, but it will be in Q1 2006 Emmanuel Dixit, Sandeep (ProSource Solutions) a écrit : Done... BTW, what is the scheduled date for release 1.1? I am using Maven 2.0.1. Thanks, Sandeep -Original Message- From: Emmanuel Venisse [mailto:[EMAIL PROTECTED

Re: "You need to define a connectionUrl parameter."

2006-01-09 Thread dan tran
is it the old problem where maven:scm ignores connectionurl in the pom and requires user to pass it in from command line? 2.0-beta-2 should already fix it -D On 1/9/06, Yann Le Du <[EMAIL PROTECTED]> wrote: > > In some cases, I had to put also a beside > > . Maybe this is not the cause, but y

RE: [m2]release:prepare requires snapshots ?

2006-01-09 Thread Michael Fiedler
"... I am not comfortable enough with them to count on it working right every time." That is not completely accurate. I discovered the checkpoints after learning (through trial and error) about the release plug-in. I can see in the code that they should work every time, but I did not know about

Re: if your question isn't getting answered...

2006-01-09 Thread Arik Kfir
I think that adding the repeating questions (and answers) to the maven faq is sufficient - no need to "bombard" the mailing lists ;-) Unless the "tip-of-the-day" mails are sent to a seperate mailing lists (e.g. "[EMAIL PROTECTED]" which one can subscribe to, and unsubscribe when they think they no

Re: [m2] NPE in "mvn site" using maven from SVN

2006-01-09 Thread Arik Kfir
Hi Vincent, Thanks - I'll add it... I take it that the skins will be published only on the next release of the site-plugin? On 1/9/06, Vincent Siveton <[EMAIL PROTECTED]> wrote: > Hi Arik, > > It is a normal issue because maven-skins is not released yet. > > Try to add the Apache Development Rep

Re: How to prevent jar to be included in WEB-INF/lib?

2006-01-09 Thread Yann Le Du
Just filed http://jira.codehaus.org/browse/MEV-282 Glad to help, -- Yann 2006/1/9, Bengt-Erik Fröberg <[EMAIL PROTECTED]>: > > Hi Yann and thanks! > > It seems to be the exact same problem, yes, and it also involves > acegisecurity, but version 0.9.0 this time, which has a compile-dependency > on

SV: How to prevent jar to be included in WEB-INF/lib?

2006-01-09 Thread Bengt-Erik Fröberg
Hi Yann and thanks! It seems to be the exact same problem, yes, and it also involves acegisecurity, but version 0.9.0 this time, which has a compile-dependency on jsp.api 2.0. That causes it to be included in WEB-INF/lib, and Tomcat 5.5.11 does not approve. Thanks to all you other helpers out

Re: How to prevent jar to be included in WEB-INF/lib?

2006-01-09 Thread Yann Le Du
Hi Bengt-Erik, Ran into the same one : http://www.mail-archive.com/users@maven.apache.org/msg31444.html Try and relocate the jspapi:jsp-api to javax.servlet:jsp-api in your local repository - take example on what has been done for servlet-api : http://www.ibiblio.org/maven2/servletapi/servlet-api

RE: call for testers: scp wagon

2006-01-09 Thread KC Baltz
No, I hadn't deleted anything before; I misunderstood the original email. That said, I just deleted: wagon-ssh-1.0-alpha-5.jar wagon-provider-api-1.0-alpha-5.jar jsch-0.1.23.jar and tried it again with no luck. I'm still getting "session is down" errors. Here is the directory listing for m

[m2] junit-test-reports with surefire-report:report

2006-01-09 Thread Jens Zastrow
Im migrating my projects from maven1 to m2. I added tthe surefire-report-maven-plugin to the pom; [pom.xml] org.codehaus.mojo surefire-report-maven-plugin >mvn site Maven2 now compiles and runs te

RE: M1 or M2?

2006-01-09 Thread Vincent Massol
> -Original Message- > From: Tim Davies [mailto:[EMAIL PROTECTED] > Sent: lundi 9 janvier 2006 13:37 > To: Maven Users List > Subject: Re: M1 or M2? > > Sorry it was the M2 documentation in general that I find shallow, I know > that the book only really covers M1. Oops my misunderstandi

RE: Overwriting a goal in subproject

2006-01-09 Thread Dixit, Sandeep (ProSource Solutions)
I apologize. Error on my part... false did work. I have one more question: Project structure: -- LEVEL 1: GENRIC_PROJ: has app server deploy goal LEVEL 1: PROJ_PARENT: inherits GENRIC_PROJ and SHOULD NOT inherit the deploy goal LEVEL 2:PROJ_CHILD: inherits PROJ_PARENT and S

Re: Testing development version

2006-01-09 Thread Yann Le Du
Valerio, A snapshot is a development version. e.g, 2.0-SNAPSHOT is the still-in-development future 2.0. If you want to use a snapshot, juste use , e.g. 2.0-SNAPSHOT . But first you must ensure that you have access to the repository containing this version. For example, for Maven snapshots as sta

Re: How to prevent jar to be included in WEB-INF/lib?

2006-01-09 Thread Wendy Smoak
On 1/9/06, Bengt-Erik Fröberg <[EMAIL PROTECTED]> wrote: > Addendum: > I've tried > > jspapi > jsp-api > 2.0 > provided > To find out which of your dependencies is causing the problem, use -X on the mvn command line. If necessary, you can to redirect the output

[M2] - maven-javadoc-plugin showPrivate bug

2006-01-09 Thread Tim Davies
Ive just set up a pom using the maven-javadoc-plugin and want to include the configuration option "showPrivate". If I simply add the tag like this, org.apache.maven.plugins maven-javadoc-plugin true

Re: SV: How to prevent jar to be included in WEB-INF/lib?

2006-01-09 Thread Tim Davies
Im a bit vague on these as well but try it with compile. worked for me! Bengt-Erik Fröberg wrote: Addendum: I've tried jspapi jsp-api 2.0 provided No luck /B-E -Ursprungligt meddelande- Från: Bengt-Erik Fröberg [mailto:[EMAIL PROTECTED] Skickat:

SV: How to prevent jar to be included in WEB-INF/lib?

2006-01-09 Thread Bengt-Erik Fröberg
Addendum: I've tried jspapi jsp-api 2.0 provided No luck /B-E -Ursprungligt meddelande- Från: Bengt-Erik Fröberg [mailto:[EMAIL PROTECTED] Skickat: den 9 januari 2006 16:16 Till: 'Maven Users List' Ämne: How to prevent jar to be included in WEB-INF/li

How to prevent jar to be included in WEB-INF/lib?

2006-01-09 Thread Bengt-Erik Fröberg
Hi I have a question about preventing jsp-api2.0.jar to be included in /lib in a webapp, since it prevents normal execution of it. The jar in question is a dependency of some of my dependencies. How do I find out which, and how do I exclude this jar in the POM? Documentation is not very clear

RE: Overwriting a goal in subproject

2006-01-09 Thread Dixit, Sandeep (ProSource Solutions)
Below is the project hierarchy I have: LEVEL 1: GENRIC_PROJ: has app server deploy goal LEVEL 1: PROJ_PARENT : inherits GENRIC_PROJ and should inherit the deploy goal LEVEL 2:PROJ_CHILD : inherits PROJ_PARENT and should not inherit the deploy goal I added false in my GENERIC pom.xml's

RE: [M2] adding source-dir within maven-antrun-plugin tasks [FIX]

2006-01-09 Thread Ruel Loehr
http://mojo.codehaus.org/build-helper-maven-plugin/ This plugin will add additional source directories to your project. Ruel Loehr JBoss QA - 512-347-7840 ext 2011 Yahoo: ruelloehr Skype: ruelloehr AOL: dokoruel -Original Message- From: Peschier J. (Jeroen) [

loader constraints violated when linking org/xml/sax/InputSource class

2006-01-09 Thread Stefan Rademacher
Hello *, when running the JUnit tests of my project with maven, I get the following error (JUnit tests within Eclipse work fine): "loader constraints violated when linking org/xml/sax/InputSource class" On the internet I found some solutions (without detailed explanation) for maven 1, but I don'

Re: [M1] Resetting Properties

2006-01-09 Thread Arnaud HERITIER
Not really recommended but you can do something like : Arnaud On 1/9/06, Afkham Azeez <[EMAIL PROTECTED]> wrote: > > Is it possible to define a global jelly variable? (i.e. a variable > that may be shared by many maven goals) > > On 1/9/06, Arnaud HERITIER <[EMAIL PROTECTED]> wrote: > > You can

Re: [M1] Resetting Properties

2006-01-09 Thread Afkham Azeez
Is it possible to define a global jelly variable? (i.e. a variable that may be shared by many maven goals) On 1/9/06, Arnaud HERITIER <[EMAIL PROTECTED]> wrote: > You can use a Jelly variable > > > > Arnaud > > On 1/9/06, Afkham Azeez <[EMAIL PROTECTED]> wrote: > > > > It seems that ant properti

RE: Overwriting a goal in subproject

2006-01-09 Thread Scokart Gilles
Look at http://maven.apache.org/maven-model/maven.html , you should find a tag 'inherited'. Set it to false for your install plugin and you should have what you search. Gilles > -Original Message- > From: Dixit, Sandeep (ProSource Solutions) > [mailto:[EMAIL PROTECTED] > Sent: 09 Janua

Overwriting a goal in subproject

2006-01-09 Thread Dixit, Sandeep (ProSource Solutions)
Is there a way I can overwrite a phase:goal, for example - install:install in a child project? Let me explain:- I have a parent project that during install phase deploys an EAR to an app server. Since its child project, let's say package an EJB jar, inherits everything from its parent, also inheri

Re: [M1] Resetting Properties

2006-01-09 Thread Arnaud HERITIER
You can use a Jelly variable Arnaud On 1/9/06, Afkham Azeez <[EMAIL PROTECTED]> wrote: > > It seems that ant properties are immutable. Is there an alternative? > > On 1/9/06, Afkham Azeez <[EMAIL PROTECTED]> wrote: > > Hi Folks, > > I'n my maven XML i set a property with a particular name(modul

Re: [m201] Plugin Dependency Configuration

2006-01-09 Thread Kees de Kooter
According to the maven xsd dependencies are not allowed inside reporting/plugins/plugin tags. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: [m2] NPE in "mvn site" using maven from SVN

2006-01-09 Thread Vincent Siveton
Hi Arik, It is a normal issue because maven-skins is not released yet. Try to add the Apache Development Repository as mirror: http://cvs.apache.org/maven-snapshot-repository/ I will add a request on the dev list. Cheers, Vincent 2005/12/23, Arik Kfir <[EMAIL PROTECTED]>: > Hi, > > I've recei

Re: [M1] Resetting Properties

2006-01-09 Thread Afkham Azeez
It seems that ant properties are immutable. Is there an alternative? On 1/9/06, Afkham Azeez <[EMAIL PROTECTED]> wrote: > Hi Folks, > I'n my maven XML i set a property with a particular name(modules say), > and then elsewhere in the XML, I try to reset it to another value. But > I found that the n

[M1] Resetting Properties

2006-01-09 Thread Afkham Azeez
Hi Folks, I'n my maven XML i set a property with a particular name(modules say), and then elsewhere in the XML, I try to reset it to another value. But I found that the new value is not getting set and the property retains its old value. Is this a bug, or do I have to do something different? -- Tha

Re: if your question isn't getting answered...

2006-01-09 Thread Carlos Sanchez
If it's a bug and you find it in JIRA, vote for it. More votes mean more chances to get it fixed. On 1/4/06, Brett Porter <[EMAIL PROTECTED]> wrote: > ... please DO NOT do these: > - forward the message back to the list as a new message > - resend the message as a new message > - don't be impatien

Re: if your question isn't getting answered...

2006-01-09 Thread Wim Deblauwe
Good idea, maybe with a reference to a faq page and maybe also with what part of the maven documentation has been updated. regards, Wim 2006/1/9, Gisbert Amm <[EMAIL PROTECTED]>: > > Wouldn't it be good to resend those advices on a regular base (monthly, > probably) for new list members? I've se

RE: [m2] NPE in "mvn site" using maven from SVN

2006-01-09 Thread Dixit, Sandeep (ProSource Solutions)
Are you using systemPath in your pom? If yes, that is the reason. From what I know there is patch to this in svn... Thanks, Sandeep -Original Message- From: Arik Kfir [mailto:[EMAIL PROTECTED] Sent: Saturday, January 07, 2006 9:32 AM To: Maven Users List Subject: Re: [m2] NPE in "mvn sit

Re: [m201] Plugin Dependency Configuration

2006-01-09 Thread mylene
Bob, What I can see from your pom.xml, is that you included the dependency in the section, of which the outline is added below, and there are no dependencies given... Mylene

Re: M1 or M2?

2006-01-09 Thread Tim Davies
Sorry it was the M2 documentation in general that I find shallow, I know that the book only really covers M1. I have found that the documentation on the maven website only ever covers the very simplest scenarios and trying to do anything more complex requires a trawl of google and this list. T

RE: [m201] Plugin Dependency Configuration

2006-01-09 Thread Allison, Bob
4.0.0 qaccess toplevel pom Bob's Maven 2.0 Experiment 3.0-SNAPSHOT http://qadev-home.dev.qintra.com/ Mantis http://qadev-home.dev.qintra.com/mantis continuum mail [EMAIL PROTE

  1   2   >