Re: Quiet Period and CVS

2007-06-06 Thread Emmanuel Venisse
You understood it well, but I think we don't use it correctly. Maybe you can help us to fix it. Emmanuel Peter Yuill a écrit : I have read the wiki on 'Quiet Period' and it seems that Continuum's Quiet Period is designed to work like Cruise Control's, but no matter what I set the schedule

Re: Subversion Maven Continuum (trunk/tags/branches) and flat layout

2007-06-06 Thread Jesse McConnell
ya basically... its what most of the people I know that use eclipse do. That or use the eclipse plugin that once the projects are imported manages the pom and maven dependencies itself. search around on the maven users list and you should come up with some example usage. having that kind of

Re: Subversion Maven Continuum (trunk/tags/branches) and flat layout

2007-06-06 Thread Emmanuel Venisse
hierarchical structures works well with eclipse. The only thing to know for hierarchival project is to not create an eclipse project for project with pom packaging. The maven-eclipse-plugin doesn't generate .project/.classpath for them. Emmanuel bkbonner a écrit : I don't want problems then.

Re: Subversion Maven Continuum (trunk/tags/branches) and flat layout

2007-06-06 Thread Christian Gruber
Also remember that you have to build once from the command-line when you alter poms that are depended-on, either as parents or dependencies if they are not available to the eclipse plugin. I just usually build world after an svn checkout, then F5 my projects into currency, then build

Add Maven 2.0+ Project does not accept file url

2007-06-06 Thread eeweise
Hi total newbie here trying to get anything working. I'm trying to create a new project and get the option to Add Maven 2.0+ Project. I enter file:///Users/eric/projects/xyz/workspace/trunk/pom.xml into the M2 POM Url field and get the error Enter the URL to the Maven 2 POM[ You must

Re: Add Maven 2.0+ Project does not accept file url

2007-06-06 Thread Emmanuel Venisse
http://maven.apache.org/continuum/faqs.html#can-i-use-file-protocol-in-add-project-view eeweise a écrit : Hi total newbie here trying to get anything working. I'm trying to create a new project and get the option to Add Maven 2.0+ Project. I enter

Re: Add Maven 2.0+ Project does not accept file url

2007-06-06 Thread eeweise
Great, thanks Emmanuel! Emmanuel Venisse wrote: http://maven.apache.org/continuum/faqs.html#can-i-use-file-protocol-in-add-project-view eeweise a écrit : Hi total newbie here trying to get anything working. I'm trying to create a new project and get the option to Add Maven 2.0+

Excluding transitive dependencies from jars/wars/ears

2007-06-06 Thread Ian Rowlands
How do I exclude transitive dependencies (dependencies on dependencies) from my jar files? I want to exclude stuff like servet-api and jta because my container provided these things. I can't exclude the primary dependency, as it is needed (my dependency is on hibernate in this example). What

Re: Excluding transitive dependencies from jars/wars/ears

2007-06-06 Thread Thorsten Heit
Hi, How do I exclude transitive dependencies (dependencies on dependencies) from my jar files? I want to exclude stuff like servet-api and jta because my container provided these things. I can't exclude the primary dependency, as it is needed (my dependency is on hibernate in this

SV: Maven, DLLs and repositories...how ?

2007-06-06 Thread Arne Styve
Hi Jason, Thanks for your input. I'll give this a try. However, how do you then use the JAR containing all the DLLs and .so's ? As far as I've understood, you cannot access a DLL that is inside a JAR, and hence you have to extract the DLLs from the JAR in order to use the DLL. Is this correct

Re: M2: Surfire report directory

2007-06-06 Thread Jux
Firstly, no, I have not configured anything in my pom.xml for the surefire-plugin. Secondly tried already with the -X, but I couldn't read anything useful out of it, but I paste some of the output here: - ... [DEBUG] Adding managed

Re: M2: Surfire report directory

2007-06-06 Thread Jux
Ok I found the cause of the problem. It was my settings.xml file. There I have specified the java version: C:\Progra~1\IBM\WebSphere\AppServer\java\bin\bin\java.exe It is IBM's implementation of Java and even though it is version 1.5, it did not work with it, so I used newer version of Sun's

Re: Preflight check for 2.0.7

2007-06-06 Thread Stephane Nicoll
+1 for the release. And by the way, it solves my reactor issue: http://jira.codehaus.org/browse/MNG-2689 Guys, I'll close this issue. Thanks, Stéphane On 6/6/07, Jason van Zyl [EMAIL PROTECTED] wrote: I have uploaded another version here: http://people.apache.org/~jvanzyl/ Fixed a couple

Re: assemble a huge JAR

2007-06-06 Thread Ben Rohlfs
On 6/6/07, Kalle Korhonen [EMAIL PROTECTED] wrote: Try outputDirectory/../outputDirectory inside dependencySet. Does not work. - Ben - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

Re: M2: Surfire report directory

2007-06-06 Thread Jux
Daah ... never mind the java\bin\bin\java.exe invalid path bug. When I corrected it, maven still gave the same error with the old IBM's java. So the newer Java version was still required. Juhan. Jux wrote: Ok I found the cause of the problem. It was my settings.xml file. There I have

Maven 2 Training Opportunity (Seeking Trainer)

2007-06-06 Thread cbach
Dear Maven Community We are looking for Maven 2 training in Europe/Switzerland. We would prefer to book a standard course, including course material in written form. The course is subject to be held at our office in Zurich. Please post any adequate training provider you know of and/or you might

RE: isXX vs getXX

2007-06-06 Thread nenad . jaksic
Hello, I forgot to add dependency to boolean-getter binaries Thanks, that was simple! - Originalnachricht - Von: [EMAIL PROTECTED] Datum: Samstag, 2. Juni 2007, 23:23 Betreff: isXX vs getXX Hello, similar as plug-in from:

Re: using zip assembly for GWTCompile output

2007-06-06 Thread Bruno Waes
On 6/5/07, Bruno Waes [EMAIL PROTECTED] wrote: I want to keep my webapp (created with mvn archetype:create -DarchetypeArtifactId=maven-archetype- webapp) as clean as possible and only have Spring config files, Freemarker templates, web.xml ... files there, and no actual code. Ok, i actually

NoSuchMethodError with surefire-booter-2.3.1-20070606.032942-4

2007-06-06 Thread Ole-Martin Mørk
[INFO] Trace java.lang.NoSuchMethodError: org.apache.maven.surefire.booter.SurefireBooter.setUseSystemClassLoader(Z)V at org.apache.maven.plugin.surefire.SurefirePlugin.constructSurefireBooter( SurefirePlugin.java:684) at org.apache.maven.plugin.surefire.SurefirePlugin.execute(

Re: SV: Maven, DLLs and repositories...how ?

2007-06-06 Thread Graham Leggett
On Wed, June 6, 2007 8:50 am, Arne Styve wrote: Thanks for your input. I'll give this a try. However, how do you then use the JAR containing all the DLLs and .so's ? As far as I've understood, you cannot access a DLL that is inside a JAR, and hence you have to extract the DLLs from the JAR in

Re: Preflight check for 2.0.7

2007-06-06 Thread Markku Saarela
mvn.bat has bug for classworld classpath: @REM -- Regular WinNT shell for %%i in (%M2_HOME%\core\boot\classworlds-*) do set CLASSWORLDS_JAR=%%i there are no core subdirectory only boot as it is in 2.0.6 - markku Jason van Zyl wrote: I have uploaded another version here:

Re: docbook + maven

2007-06-06 Thread Stephane Nicoll
Hey, On 6/5/07, Steve Ebersole [EMAIL PROTECTED] wrote: On Tue, 2007-06-05 at 09:18 +0200, Stephane Nicoll wrote: I am currently migration our doc on docbook+M2 and I ran in the same issues. Is your plugin freely available? Sure, as of now it is in Hibernate SVN and published to the JBoss

Re: [M2] Running maven avoing checking the existence of pom file in the local repository

2007-06-06 Thread Jo Vandermeeren
Hi Roberto, If you define a dependency (or it gets pulled in transitively), your build will fail if it is not available. It is needed to correctly build your project. Tricking maven into thinking that it is not needed will usually result in a corrupt build. If you really don't need the

Re: changelog scm question

2007-06-06 Thread Jo Vandermeeren
Hi Seth, Why don't you just define the correct SCM information in your parent? Cheers Jo On 6/6/07, Seth Mason [EMAIL PROTECTED] wrote: Is there a way to configure the changelog plugin so it doesn't use the values form the scm element but rather from a plugin configuration element? I have a

Re: M2: Surfire report directory

2007-06-06 Thread Jo Vandermeeren
On 6/6/07, Jux [EMAIL PROTECTED] wrote: I also have not told, that for other developers in my team, that error does not occur. Hmm.. You might want to remove the surefire plugin from your local repository and clean your project. Then try it again.. Cheers Jo

Re: assemble a huge JAR

2007-06-06 Thread Vandermeeren, Jo
Hi Ben, If you want to bundle all your dependencies in one jar, you could use the prefabricated jar-with-dependencies descriptor instead. http://maven.apache.org/plugins/maven-assembly-plugin/usage.html Check out a previous post: http://www.mail-archive.com/users@maven.apache.org/msg65381.html

Re: RMIC help for Maven2

2007-06-06 Thread Jo Vandermeeren
On 6/5/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: (1) How can I compile those java files by 'rmic' in Maven2 or How the pom.xml would look like ? (2) What do I need to do to compile those java files by 'rmic' in Maven2 ? Hi Patel, You might want to have a look at the

Re: RMIC help for Maven2

2007-06-06 Thread Armin Ehrenfels
Jo Vandermeeren wrote: On 6/5/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: (1) How can I compile those java files by 'rmic' in Maven2 or How the pom.xml would look like ? (2) What do I need to do to compile those java files by 'rmic' in Maven2 ? Hi Patel, You might want

password argument is null. scm ext connection

2007-06-06 Thread Arun P Johny
Hi all, I'm getting the following error when I try to execute the command 'mvn release:prepare' -Error --other downloads Downloading: http://mirrors.ibiblio.org/pub/mirrors/maven2/org/apache/maven/scm/maven-scm-provider-perforce/1.0/maven-scm-provider-perforce-1.0.jar 61K downloaded

RE: SV: Maven, DLLs and repositories...how ?

2007-06-06 Thread Arne Styve
On Wed, June 6, 2007 8:50 am, Arne Styve wrote: Thanks for your input. I'll give this a try. However, how do you then use the JAR containing all the DLLs and .so's ? As far as I've understood, you cannot access a DLL that is inside a JAR, and hence you have to extract the DLLs

Generate a ear from a ejb project

2007-06-06 Thread Raúl Arabaolaza Barquín
Hi: I have a ejb Project wich i would like to package as an ear too without creating a specific ear project but using the ejb project´s pom I´ve tried to add the project as a ebjModule in the pom.xml this way modelVersion4.0.0/modelVersion groupIdcom.endesa/groupId

Re: SSH2 Connection error. password argument is null

2007-06-06 Thread Dennis Lundberg
There are two things that you can try: Run the cvs command on your command line: cvs -z3 -f -d :ext:[EMAIL PROTECTED]:/var/lib/cvs/root -n -q update -d If that doesn't work, then something is wrong at your end. Have you set your environment variable to tell cvs which external transport

Re: assemble a huge JAR

2007-06-06 Thread Ben Rohlfs
Thanks Jo, it works indeed, but ... ... the root of the problem was that I started assembly:assembly from the parent project and not the project itself. From the parent you may want to arbitrarily combine modules, which the moduleSet seems to be for. My experience leads me to the conclusion

Re: [M2] Running maven avoing checking the existence of pom file in the local repository

2007-06-06 Thread Roberto UserList
Hi Jo! I think I was not clear enough. I configured in the pom.xml of my project all necessary dependencies, but, there is no correpondent .pom file for every .jar file in the local repository. Maven was able to ignore the absence of this .pom files when I executed it some monthes ago. But,

axistools-maven-plugin admin question

2007-06-06 Thread DavidWilliams
Hi Everyone, I gotten thru the wsdl2java issues with the axistools-maven-plugin and now working on the admin goal. When I run the admin goal I get the following error. Has anyone seen this before? Thanks again for all your help? David [INFO] [axistools:admin {execution: admin}] Jun 6,

Re: docbook + maven

2007-06-06 Thread Steve Ebersole
Sure. What we do is we package the styles in a zip file using a standard maven project and the build-helper-mojo from codehaus. The zip file contains not only the CSS, the XSLT parameters but also the images linked to the style. Next, in a doc project, we depend on the zip above and we use

Re: Generate a ear from a ejb project

2007-06-06 Thread Jo Vandermeeren
On 6/6/07, Raúl Arabaolaza Barquín [EMAIL PROTECTED] wrote: Can I generate a ear file with a ejb module without creating a ear project? Can I use the ejb project´s pom to generate the ear too? Hi Raul, Short answer: no, you can't. All good developers are a bit lazy, that's usually the

generating pom.xml from MANIFEST.MF?

2007-06-06 Thread pfischer06
Hello, I have to add some not mavenized external projects as jars to my repository. This external projects are currently in developing-status and can not be mavenized. They all have an existing MANIFEST.MF where bundle-dependencies are defined. Is there a way to automatically create a pom.xml

Re: calling plugin in another plugin?

2007-06-06 Thread Jo Vandermeeren
Hi Zhangxu, On 6/6/07, 張旭 [EMAIL PROTECTED] wrote: Does maven2 has api to add and call a plugin in another plugin ? This question has been asked a couple of times in the past, but nobody seems to have an answer. So, I think it's fair to conclude that there is no API available for this. Or

RE: calling plugin in another plugin?

2007-06-06 Thread Nunn, Gerald
Here is a MojoInvoker class I wrote that invokes one Mojo from another using reflection, I use it to invoke the install plugin from a plugin that handles breaking up and installing weblogic shared libraries into the repository. The philosphy is that the plugin doing the invoking is familiar

RE: Maven not respecting order of profiles passed in on the command line

2007-06-06 Thread EJ Ciramella
Maven has one artifact per pom. So do we. We just have an option to package JUST the items called out as resources (and modified during process-resources). If a property is put on the command line, a different assembly is run. When you release your artifact it should be reproducible. It

Re: Preflight check for 2.0.7

2007-06-06 Thread Alan D. Salewski
On Tue, Jun 05, 2007 at 08:31:51PM -0400, Jason van Zyl spake thus: I have uploaded another version here: http://people.apache.org/~jvanzyl/ *snip* It works for me. I've tested this version (05-Jun-2007 17:29) against a 32-subproject application (where some of the subprojects have more

Re: assemble a huge JAR

2007-06-06 Thread John Casey
in the dependencySet, try outputFileNameMapping / This is something we need to correct in 2.2-beta-2, since it's an inconsistency with 2.1. Also, just a reminder that you should definitely think about being explicit with the version of assembly plugin in your POM, since it has undergone

Re: assemble a huge JAR

2007-06-06 Thread John Casey
On Jun 6, 2007, at 8:01 AM, Ben Rohlfs wrote: Thanks Jo, it works indeed, but ... ... the root of the problem was that I started assembly:assembly from the parent project and not the project itself. From the parent you may want to arbitrarily combine modules, which the moduleSet seems to be

RE: Generate a ear from a ejb project

2007-06-06 Thread Raúl Arabaolaza Barquín
Hello Jo: I think the same as you I wanted a parent Project of type ear with some children projects of ejb type, but my boss was complaining about too many projects now we have to do things the right way :D Sometimes life is good... Best regards, Raúl -Mensaje original- De: Jo

Build of maven 2.0.x branch: test failures

2007-06-06 Thread Graham Leggett
Hi all, When an attempt is made to build a fresh checkout of the 2.0.x branch of maven from https://svn.apache.org/repos/asf/maven/components/branches/maven-2.0.x using maven v2.0.6, I get test failures as below: [INFO] -

Detecting version conflicts of (direct and transitive) dependencies

2007-06-06 Thread Klaus Brunner
Hi, I'm a bit unhappy with Maven's dependency conflict resolution (as of 2.0.6 at least), which results in surprising version downgrades, multiple versions of the same dependency, and other unpleasant effects. Example: a WAR project depends on commons-configuration:1.4, which has these

Re: Detecting version conflicts of (direct and transitive) dependencies

2007-06-06 Thread Mark Hobson
On 06/06/07, Klaus Brunner [EMAIL PROTECTED] wrote: Hi, I'm a bit unhappy with Maven's dependency conflict resolution (as of 2.0.6 at least), which results in surprising version downgrades, multiple versions of the same dependency, and other unpleasant effects. Example: a WAR project depends on

Re: calling plugin in another plugin?

2007-06-06 Thread Wayne Fay
If you attached something to your email, it was removed before being sent on to the rest of the list, unfortunately. Please resend (in the message body) or provide a download link -- it sounds useful. Wayne On 6/6/07, Nunn, Gerald [EMAIL PROTECTED] wrote: Here is a MojoInvoker class I wrote

RE: calling plugin in another plugin?

2007-06-06 Thread Nunn, Gerald
package com.bea.ps.maven.util; import java.lang.reflect.Field; import java.util.Map; import org.apache.maven.plugin.ContextEnabled; import org.apache.maven.plugin.Mojo; import org.apache.maven.plugin.MojoExecutionException; import org.apache.maven.plugin.MojoFailureException; import

Debugging maven within eclipse

2007-06-06 Thread Graham Leggett
Hi all, In order to get to the bottom of a number of maven issues, I would like to fire up maven inside eclipse so that I can do step by step debugging, and having gone through the docs I am struggling to find out how to do this. Google found this:

Re: Detecting version conflicts of (direct and transitive) dependencies

2007-06-06 Thread Klaus Brunner
This shouldn't happen if you're clean packaging. Not sure what you mean by clean packaging. I can reproduce this problem with a simple mvn clean install run - both JAR versions end up in the WEB-INF/lib directory. The commons-xxx JARs are straight from the central repository. The default

Re: Build of maven 2.0.x branch: test failures

2007-06-06 Thread Jason van Zyl
Just built and it works fine. You on windows? On 6 Jun 07, at 10:17 AM 6 Jun 07, Graham Leggett wrote: Hi all, When an attempt is made to build a fresh checkout of the 2.0.x branch of maven from https://svn.apache.org/repos/asf/maven/components/branches/maven-2.0.x using maven v2.0.6, I

Re: Preflight check for 2.0.7

2007-06-06 Thread Jason van Zyl
On 6 Jun 07, at 9:50 AM 6 Jun 07, Alan D. Salewski wrote: On Tue, Jun 05, 2007 at 08:31:51PM -0400, Jason van Zyl spake thus: I have uploaded another version here: http://people.apache.org/~jvanzyl/ *snip* It works for me. I've tested this version (05-Jun-2007 17:29) against a

Re: Detecting version conflicts of (direct and transitive) dependencies

2007-06-06 Thread Mark Hobson
On 06/06/07, Klaus Brunner [EMAIL PROTECTED] wrote: This shouldn't happen if you're clean packaging. Not sure what you mean by clean packaging. I can reproduce this problem with a simple mvn clean install run - both JAR versions end up in the WEB-INF/lib directory. The commons-xxx JARs are

Re: SV: Maven, DLLs and repositories...how ?

2007-06-06 Thread Jason van Zyl
On 6 Jun 07, at 2:50 AM 6 Jun 07, Arne Styve wrote: Hi Jason, Thanks for your input. I'll give this a try. However, how do you then use the JAR containing all the DLLs and .so's ? As far as I've understood, you cannot access a DLL that is inside a JAR, and hence you have to extract the

Re: M2: Surfire report directory

2007-06-06 Thread Jux
Yep, eventually I did that also. Now everything works great. Jo Vandermeeren wrote: On 6/6/07, Jux [EMAIL PROTECTED] wrote: I also have not told, that for other developers in my team, that error does not occur. Hmm.. You might want to remove the surefire plugin from your local

Re: Programmatically finding dependencies

2007-06-06 Thread Jason van Zyl
John might have a recommendation from an API he cleaned up. I don't recommend anyone use the current APIs for artifact resolution. On 5 Jun 07, at 12:11 PM 5 Jun 07, Jo Vandermeeren wrote: On 6/5/07, CasMeiron [EMAIL PROTECTED] wrote: ArtifactoryFactory : interface ArtifactResolver :

Re: Build of maven 2.0.x branch: test failures

2007-06-06 Thread Graham Leggett
On Wed, June 6, 2007 4:53 pm, Jason van Zyl wrote: Just built and it works fine. You on windows? On windows and inside a firewall: --- T E S T S --- Running

Re: SV: Maven, DLLs and repositories...how ?

2007-06-06 Thread Mark Donszelmann
Hi have a look at http://java.freehep.org/freehep-nar-plugin Regards Mark Donszelmann On Jun 6, 2007, at 8:10 AM, Jason van Zyl wrote: On 6 Jun 07, at 2:50 AM 6 Jun 07, Arne Styve wrote: Hi Jason, Thanks for your input. I'll give this a try. However, how do you then use the JAR

Re: generating pom.xml from MANIFEST.MF?

2007-06-06 Thread Wayne Fay
I'm not aware of any plugin or process that exists which would generate the pom.xml file from the MANIFEST.MF. You'll have to make them by hand, or create a tool. Wayne On 6/6/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hello, I have to add some not mavenized external projects as jars to

[m2] wsdl2java issue: The filename, directory name, or volume label syntax is incorrect

2007-06-06 Thread Mick Knutson
I have the following declaration: plugin groupIdorg.apache.axis2.maven2/groupId artifactIdaxis2-java2wsdl-maven-plugin/artifactId configuration classNameorg.delta.services.BusinessService1 /className

Re: calling plugin in another plugin?

2007-06-06 Thread Jason van Zyl
On 6 Jun 07, at 6:52 AM 6 Jun 07, Jo Vandermeeren wrote: Hi Zhangxu, On 6/6/07, 張旭 [EMAIL PROTECTED] wrote: Does maven2 has api to add and call a plugin in another plugin ? This question has been asked a couple of times in the past, but nobody seems to have an answer. It's a bad

Re: NoSuchMethodError with surefire-booter-2.3.1-20070606.032942-4

2007-06-06 Thread Kenney Westerhof
Hi, I just redeployed all of the surefire artifacts for 2.3.1, so, could you test again and let me know if it's fixed now? I think someone deployed the booter and not the plugin or vice versa. -- Kenney Ole-Martin Mørk wrote: [INFO] Trace java.lang.NoSuchMethodError:

Re: changelog scm question

2007-06-06 Thread Seth Mason
Why don't you just define the correct SCM information in your parent? I did actually try that but I think the problem is that I'm using the parent as an include more than a true parent. (This is so I can have the plugin configuration for all my projects is centrally located.) My child pom isn't

M2 classpath generation

2007-06-06 Thread Jon Strayer
I'm currently using maven 2. Most of our applications are batch applications that run from cron via a bash script. I've written a plugin that (among other things) will read through the pom and generate a file that sets the class path correctly for this application. Is there anything like this

RE: calling plugin in another plugin?

2007-06-06 Thread Nunn, Gerald
Jason, It's a bad practice, and leads to coupling between plugins which is bad. We've seen the aftermath of this happening in Maven 1.x. Since I'm doing this already I'm curious how this could be done better and accomplish my goal, I'm a relative newbie to Mojos so I'm wondering if I am

Re: M2 classpath generation

2007-06-06 Thread Steven Rowe
This Appassembler plugin will do this and more: http://mojo.codehaus.org/appassembler/appassembler-maven-plugin/ Jon Strayer wrote: I'm currently using maven 2. Most of our applications are batch applications that run from cron via a bash script. I've written a plugin that (among other

Re: M2 classpath generation

2007-06-06 Thread Jon Strayer
I'm getting this exception when I try mvn appassembler:assemble [INFO] Trace java.lang.NullPointerException at org.apache.maven.artifact.installer.DefaultArtifactInstaller.install( DefaultArtifactInstaller.java:71) at org.codehaus.mojo.appassembler.AssembleMojo.installArtifact(

Re: Debugging maven within eclipse

2007-06-06 Thread Karan Malhi
http://docs.codehaus.org/display/MAVENUSER/Dealing+with+Eclipse-based+IDE On 6/6/07, Graham Leggett [EMAIL PROTECTED] wrote: Hi all, In order to get to the bottom of a number of maven issues, I would like to fire up maven inside eclipse so that I can do step by step debugging, and having gone

Custom archetypes with .vm files?

2007-06-06 Thread Clifton
Hi, I'm trying to create a custom archetype for Liferay theme war files. I've downloaded one of their example theme packs to start from and it has .vm files in it. I can create/install an archetype listing these vms as resource files but when I try to activate/use it to start a theme project I

Re: axistools-maven-plugin admin question

2007-06-06 Thread DavidWilliams
Does anyone know how I can view the classpath for the admin goal? Thanks, David David Williams/SunGardEBS 06/06/2007 07:57 AM To Maven Users List users@maven.apache.org cc Subject axistools-maven-plugin admin question Hi Everyone, I gotten thru the wsdl2java issues with the

Support multiple child module pom's in the same directory?

2007-06-06 Thread Deacon, Brian
Hi all, For reasons that are un-mavenish and evil and will eventually be solved with a source code reorganization, I am stuck with having to try to build two separate modules that sit in the same source tree. What I'd like to do in the parent multi-module pom is this: modules !--To use

Group directory property

2007-06-06 Thread Siegmann Daniel, NY
In my site deployment URL, I want the following: ${project.groupId}/${project.artifactId} However, I want the group to be in directory form (i.e. org.apache.maven would be org/apache/maven). Is this possible, is there a property for this? -- Daniel Siegmann FJA-US, Inc. 512 Seventh Ave., New

Re: M2 classpath generation

2007-06-06 Thread Steven Rowe
Hi Jon, This JIRA issue sounds similar: http://jira.codehaus.org/browse/MOJO-714 Also, you should be running this goal like so: mvn package appassembler:assemble Steve Jon Strayer wrote: I'm getting this exception when I try mvn appassembler:assemble [INFO] Trace

Re: Support multiple child module pom's in the same directory?

2007-06-06 Thread Wayne Fay
This is not possible. However, you can run mvn -f siblingpom.xml from the foo/bar directory and Maven will execute using that pom rather than the default pom.xml in the directory. Wayne On 6/6/07, Deacon, Brian [EMAIL PROTECTED] wrote: Hi all, For reasons that are un-mavenish and evil and

Creating archetypes with images?

2007-06-06 Thread Clifton
Now I'm stuck again! I'm trying to create a custom archetype with binary image files and it looks like Maven is treating them like text. Is there a tag or attribute in archetype.xml that I can use to turn off the parsing of individual files? -- View this message in context:

Generating Class-Path: Entry in /META-INF/Manifest.mf for an EJB

2007-06-06 Thread Artur Wystub
Hi NG, is there a way to let maven generate the Class-Path: Entry in /META-INF/Manifest.mf for an EJB? I have a multi-module project with an ear and an ejb as subprojects and have to put all the names of jars referenced by the ejb manually in the Manifest.mf in META-INF of the ejb. Is there

Subversion Maven Continuum (trunk/tags/branches) and flat layout

2007-06-06 Thread bkbonner
I have a question about the best practice for dealing with a flat layout project in conjunction with a common directory structure for subversion namely: foo/trunk/... foo/tags/... foo/branches/... If I have multiple modules that are part of foo, I'll end up with: foo/trunk/... foo/tags/...

Re: M2 classpath generation

2007-06-06 Thread Jon Strayer
Excellent! Thank you very much. I was assuming that since I had run mvn package that I could leave package out of the appassembler run. On 6/6/07, Steven Rowe [EMAIL PROTECTED] wrote: Hi Jon, This JIRA issue sounds similar: http://jira.codehaus.org/browse/MOJO-714 Also, you should be

RE: Support multiple child module pom's in the same directory?

2007-06-06 Thread Deacon, Brian
So the current implementation requires that a child pom module MUST be in a file named pom.xml? Just trying to understand... And thank you very much for the quicky reply. Brian -Original Message- From: Wayne Fay [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 06, 2007 12:40 PM To:

Re: Generating Class-Path: Entry in /META-INF/Manifest.mf for an EJB

2007-06-06 Thread Wayne Fay
This is documented on the plugin's website: http://maven.apache.org/plugins/maven-ejb-plugin/faq.html Wayne On 6/6/07, Artur Wystub [EMAIL PROTECTED] wrote: Hi NG, is there a way to let maven generate the Class-Path: Entry in /META-INF/Manifest.mf for an EJB? I have a multi-module project

Re: Subversion Maven Continuum (trunk/tags/branches) and flat layout

2007-06-06 Thread bkbonner
I've tried creating svn:externals as a separate project (i.e. eclipseworkspace/continuum-build and I define on this svn:externals: foo http://www.test.com/foo/trunk bar http://www.test.com/bar/trunk I can checkout this project using eclipse but continuum complains that it can't find a

Re: Subversion Maven Continuum (trunk/tags/branches) and flat layout

2007-06-06 Thread Jesse McConnell
you might have more luck on the maven users list.. but any particular reason you can't use the maven-eclipse-plugin for generating your eclipse files to import? then you can use a sane svn setup.. jesse On 6/6/07, bkbonner [EMAIL PROTECTED] wrote: I've tried creating svn:externals as a

Cascading package dependencies

2007-06-06 Thread André Salvati
Hi, I'm a newbie with Maven 2 (2.0.6). Just wondering the following situation: I'm working with 3 modules: 1 father (Project1) and 2 children (Project2 and Project3). Project2 depends on Project3. Firstly, I'd like Maven was able to detect updates, compile, build and package Project3 in

Re: Cascading package dependencies

2007-06-06 Thread Wayne Fay
No, this is not possible. However, if you run mvn install from the top-level (father) project, it will run mvn install on all the modules (children) you've defined, which achieves the same results you're looking for. Wayne On 6/6/07, André Salvati [EMAIL PROTECTED] wrote: Hi, I'm a newbie

[m2] anyone have exec-maven-plugin JDeveloper genInterface working for webservices?

2007-06-06 Thread Mick Knutson
I could really use some examples to help getting this to run through maven... -- --- Thanks, Mick Knutson http://www.baselogic.com http://www.blincmagazine.com http://www.djmick.com http://www.myspace.com/mickknutson http://www.myspace.com/djmick_dot_com http://www.myspace.com/sexybeotches

Re: Excluding transitive dependencies from jars/wars/ears

2007-06-06 Thread Ian Rowlands
It's not enough to do that - if you say it is provided, it is removed from the MANIFEST.MF file. So this means that the war file won't look outside of itself (or at least in this file) to resolve the classes. Regards, Ian AFAIK it's enough to specify scopeprovided/scope to the

Re: calling plugin in another plugin?

2007-06-06 Thread Kenney Westerhof
Nunn, Gerald wrote: Jason, It's a bad practice, and leads to coupling between plugins which is bad. We've seen the aftermath of this happening in Maven 1.x. Since I'm doing this already I'm curious how this could be done better and accomplish my goal, I'm a relative newbie to Mojos so I'm

Problems with latest snapshot of maven-eclipse-plugin

2007-06-06 Thread Geir Gullestad Pettersen
I don't know if this is the appropriate mailing list for my issue so I do apologize if it is not. I have problems getting the latest SNAPSHOT version of maven-eclipse-plugin-2.4-20070606.213427-14 to work properly. After this snapshot release was deployed to the apache snapshot repository

How to create custom lifecycle through custom plugin

2007-06-06 Thread maarten roosendaal
Hi, For all our projects we want to count the lines of code, this is done with a small application through a plugin. We want to incorporate this in the maven lifecycle only on our buildserver and projects themselves are unaware of this feature. How should we go about this? We are plannig on

Maven-proxy and error

2007-06-06 Thread nmall
Hi, I created a maven-proxy on our company's linux server and when I ran it with java -jar maven-proxy-standalone-0.2-app.jar maven-proxy.properties it seems to be running. However, when I refer to it in my local pom and try to compile, I get the following error. Any help would be