Re: Assembly madness...

2006-08-07 Thread Vinod Panicker
On 8/8/06, mike7 <[EMAIL PROTECTED]> wrote: I am trying to make an assembly out of many modules (.jar) installed in a shared repository. Here is what I did so far with no success: 1- created a multi-module pom 2- installed each module in a local repository 3- tried to configure this assembly plu

Re: Assembly madness...

2006-08-07 Thread Edwin Punzalan
please see a staging site for the assembly plugin with your use-case as an example: http://people.apache.org/~epunzalan/maven-assembly-plugin/examples/multimodule/index.html mike7 wrote: I am trying to make an assembly out of many modules (.jar) installed in a shared repository. Here is what I

Assembly madness...

2006-08-07 Thread mike7
I am trying to make an assembly out of many modules (.jar) installed in a shared repository. Here is what I did so far with no success: 1- created a multi-module pom 2- installed each module in a local repository 3- tried to configure this assembly plugin to put all those modules into one assembly

Re: [m2] best practices on defining dependencies: i.e. how to avoid the kitchen sink

2006-08-07 Thread Barrie Treloar
I'm sure there are probably other pom's out there that do not correctly define the dependencies. So in these cases what is the suggested way of overriding them so they are not included? Including the dependency again and using optional doesn't fix the problem, nor does changing the scope to provi

[m2] best practices on defining dependencies: i.e. how to avoid the kitchen sink

2006-08-07 Thread Barrie Treloar
I just added a dependency on EasyConf easyconf easyconf 0.9.5 and now I have a lot of dependencies which I don't need. I think this is because the dependencies listed in EasyConf pom needs to be more strictly defined. For example there are api dependencies and im

console plugin

2006-08-07 Thread Ishaaq Chandy
Hi all, I've been using maven 1.0 till now and just recently started using 2.0 a couple of days ago. I used to use the console plugin quite a bit in 1.0, but I can't seem to find it in 2.0. Is it no longer available or has it been replaced with something else? Thanks, Ishaaq

[m2] assembly: why does filtering only occur for files and not fileSets?

2006-08-07 Thread Barrie Treloar
Does anyone know the reason why filtering is only applied to ? If I define a the it is not filtered? I have a bunch of configuration files in src/main/config which need to be configured correctly for different environments, dev, int, qa, production. I thought it was to define profiles which con

Re: mvn & cygwin

2006-08-07 Thread Daniel Serodio
Douglas Ferguson wrote: > Anybody using mvn & cygwin? > > > > I just ran into this problem, where <> = my local path. > > It seems like it is a cygwin path vs. windows path issue. > > > > svn: '/cygdrive/c/<>/c:/<> ' is not a > working copy > > > > Anybody got a good work around? > I'm us

Re: mvn & cygwin

2006-08-07 Thread Jörg Schaible
Douglas Ferguson wrote: > Anybody using mvn & cygwin? > > > > I just ran into this problem, where <> = my local path. > > It seems like it is a cygwin path vs. windows path issue. > > > > svn: '/cygdrive/c/<>/c:/<> ' is not a > working copy > > > > Anybody got a good work around? Use

Re: mvn & cygwin

2006-08-07 Thread Jörg Schaible
Chas Douglass wrote: > Douglas Ferguson wrote: >> Anybody using mvn & cygwin? >> >> >> >> I just ran into this problem, where <> = my local path. >> >> It seems like it is a cygwin path vs. windows path issue. >> >> >> >> svn: '/cygdrive/c/<>/c:/<> ' is not a >> working copy >> >> >>

Re: problem with compiler plugin

2006-08-07 Thread Nick Veys
Sounds like you don't have the dependency specified... What does your pom.xml look like, what does your ant script do? There's not much info in your message! :) On 8/7/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: Hi All i'm having this weired error, in my ABC.java dev team has something

fatal error with mvn prepare:release -DdryRun=true

2006-08-07 Thread Peter
Hello, I'm trying to get a release with maven2 and svn and eclipse since about 1 week - that's when I started with Maven ... Below you find the manual log tracked on my (long) way to a fatal error while preparing a 'dry' release. Thank you for helping me Peter my log: 1:mvn archetype:create

Re: Resolving Source code dependency among modules?

2006-08-07 Thread Jesse McConnell
sounds like you need to be having each of the subprojects installing into the local repository so they can be referenced from the other subprojects.. ie, the maven process that is running on each of the subprojects is running as some user, and the local repository for that user is not getting the

problem with compiler plugin

2006-08-07 Thread raghurajan . x . gurunathan
Hi All i'm having this weired error, in my ABC.java dev team has something like import org.apache.commons.* then when i use ant build file with commons-logging.xml it compiles perfectly, but when i use maven to buidl this at compiler phase it throws error as package org.ap

RE: Offline documentation

2006-08-07 Thread Frederik Bayart
javadoc can is also online, e.g. http://maven.apache.org/ref/current/maven-project/apidocs/index.html http://maven.apache.org/ref/current/maven-artifact/apidocs/ http://maven.apache.org/ref/current/maven-model/apidocs/index.html For other components, the url is analogous. Frederik -Origi

Re: Deploying Output From Assembly

2006-08-07 Thread Wayne Fay
I don't use assembly much myself, but yes, it sounds like that's what he's saying... You can always try it (using mvn install) and then manually check the m2 repo in your filesystem to confirm. And then you can access the artifact as a dependency in another pom by using: your_assembly_config_

Re: How can I tell Maven to use my internal repository first?

2006-08-07 Thread Wayne Fay
Most people resolve this by setting up a Maven Proxy (or Proximity) in their local corporate environment. Then you can configure your proxy to look at Central and/or local internal repo for artifacts. Wayne On 8/7/06, Wayne Fay <[EMAIL PROTECTED]> wrote: You can't tell Maven to check your local

Re: How can I tell Maven to use my internal repository first?

2006-08-07 Thread Wayne Fay
You can't tell Maven to check your local repo first. You can however override Central (with mirrorOf in settings) but then you will not able to connect to Central at all. Wayne On 8/7/06, Daniel Serodio <[EMAIL PROTECTED]> wrote: I have setup an internal repository in our intranet, and added i

How can I tell Maven to use my internal repository first?

2006-08-07 Thread Daniel Serodio
I have setup an internal repository in our intranet, and added it to the project's POM, but Maven still tries repo1.maven.org before trying our internal repo. How can I tell it to try my internal repository first? It's the only one listed in the project's POM. Maven is 2.0.4 TIA, Daniel Serodio -

Re: [m2] ant run plugin

2006-08-07 Thread Lee Meador
maven.compile.classpath would give you the current classpath for compile. Look here for a bit more info on related stuff: http://maven.apache.org/plugins/maven-antrun-plugin/classpaths.html The top level of the xml is not -- Lee On 8/7/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: >

Re: Trying to use latest maven-war-plugin

2006-08-07 Thread Wendy Smoak
On 8/7/06, William Kinney <[EMAIL PROTECTED]> wrote: [ERROR] BUILD FAILURE [INFO] [INFO] Unable to build project 'C:\temp\maven-plugin\maven-plugin-pl

Trying to use latest maven-war-plugin

2006-08-07 Thread William Kinney
Hello, I'm trying to use the "" element that comes with maven-war-plugin. But apparently that is only in version 2.0.2-SNAPSHOT. I tried to 'mvn install' the maven-plugin from SVN repo (https://svn.apache.org/repos/asf/maven/plugins/trunk/), and it made me 'mvn install' the maven core trunk (https

Re: mvn & cygwin

2006-08-07 Thread Chas Douglass
Douglas Ferguson wrote: Anybody using mvn & cygwin? I just ran into this problem, where <> = my local path. It seems like it is a cygwin path vs. windows path issue. svn: '/cygdrive/c/<>/c:/<> ' is not a working copy Anybody got a good work around? I believe you are seeing htt

Re: Offline documentation

2006-08-07 Thread Wayne Fay
Depending on *how* bad your connection is, this might not work either. The Maven Site project is 2mb in SVN, not so bad... but the Plugins are huge... and like Wendy said, it needs Maven 2.0.5-SNAPSHOT too... so hopefully you don't need them too. ;-) Wayne On 8/7/06, Wendy Smoak <[EMAIL PROTECT

Re: Offline documentation

2006-08-07 Thread Wendy Smoak
On 8/7/06, Vincent Siveton <[EMAIL PROTECTED]> wrote: Calling mvn site is the only option: Maven Web Site svn co http://svn.apache.org/repos/asf/maven/site/trunk Plugins svn co https://svn.apache.org/repos/asf/maven/plugins/trunk This works, but be aware that Maven 2.0.5-SNAPSHOT is required to

Re: Offline documentation

2006-08-07 Thread Vincent Siveton
Calling mvn site is the only option: Maven Web Site svn co http://svn.apache.org/repos/asf/maven/site/trunk Plugins svn co https://svn.apache.org/repos/asf/maven/plugins/trunk Cheers, Vincent 2006/8/7, Chris Hilton <[EMAIL PROTECTED]>: You can probably check out the entire core Maven project a

Eclipse bundle howto

2006-08-07 Thread Martin Vysny
Hi all, I finally managed to create working maven2 build that builds eclipse plugins (bundles). A simple howto is located at , the build system itself is demonstrated in EuroMath2 eclipse plugin (just download src distribution at

Re: mvn & cygwin

2006-08-07 Thread Wayne Fay
This does not seem to be a Cygwin problem, instead its an SVN problem. I think it is confused about the fact that you did an SVN Checkout from Windows and then are attempting to use that repo from Cygwin. I'd suggest you checkout the project fresh (from inside Cygwin + SVN) if you want to work on

Re: Offline documentation

2006-08-07 Thread Jan Vissers
Probably not the best way to do it, but I used 'Scrapbook' plugin for Firefox to get all the things I needed. Paul Michael Reilly wrote: As near as I can tell, all Maven2 reference documentation is on-line accessible. I find myself on vacation now with rare and low quality on-line access. Is

RE: Offline documentation

2006-08-07 Thread Chris Hilton
You can probably check out the entire core Maven project and then run "mvn site" in the root directory to generate documentation for all of the core plugins. Chris Hilton > -Original Message- > From: Paul Michael Reilly [mailto:[EMAIL PROTECTED] > Sent: Monday, 07 August, 2006 12:24 > To

Offline documentation

2006-08-07 Thread Paul Michael Reilly
As near as I can tell, all Maven2 reference documentation is on-line accessible. I find myself on vacation now with rare and low quality on-line access. Is there some way I can easily download documentation for the Maven2 core and plugins? I am about to go get the Mergere book (pdf) but I was wo

mvn & cygwin

2006-08-07 Thread Douglas Ferguson
Anybody using mvn & cygwin? I just ran into this problem, where <> = my local path. It seems like it is a cygwin path vs. windows path issue. svn: '/cygdrive/c/<>/c:/<> ' is not a working copy Anybody got a good work around? __ Douglas W. Fer

RE: Deploying Output From Assembly

2006-08-07 Thread Douglas Ferguson
If I understand you correctly, I would use this: maven-assembly-plugin 2.0-beta-1 ... Configuration Here ... package However, I don't know if I follow your last comme

Re: Deploying Output From Assembly

2006-08-07 Thread Edwin Punzalan
You can just deploy it but have the assembly plugin run in the package phase. The id of the assembly descriptor becomes the artifact classifier in case you want to use the one generated by the assembly. Douglas Ferguson wrote: I would like to deploy a zip file that is output from my assemb

Re: [m2] ant run plugin

2006-08-07 Thread Dion Gillard
On 8/8/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > -Original Message- > From: Dion Gillard [mailto:[EMAIL PROTECTED] ==== > > From what I know, it's not a bug in the WAS ant tasks. > > That system property (and many others) are set by > ws_ant.bat|sh and setupCmdLine.bat|sh and

RE: [m2] ant run plugin

2006-08-07 Thread Peter . Pilgrim
> -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of Lee Meador > Sent: 07 August 2006 18:05 > To: Maven Users List > Subject: Re: [m2] ant run plugin > > There is no official list of properties. > Surely there must be certain commons properties. Let

RE: [m2] ant run plugin

2006-08-07 Thread Peter . Pilgrim
> -Original Message- > From: Dion Gillard [mailto:[EMAIL PROTECTED] ==== > > From what I know, it's not a bug in the WAS ant tasks. > > That system property (and many others) are set by > ws_ant.bat|sh and setupCmdLine.bat|sh and some tasks rely on > those properties. > So how ar

Re: [m2] ant run plugin

2006-08-07 Thread Lee Meador
There is no official list of properties. One thing that helps is that things defined in the POM can sometimes be referenced as properties. For example 'project.build.finalName' gives the value from the pom that is defined in: xyz (skipping all the other parts of the POM) Just put

Re: [m2] ant run plugin

2006-08-07 Thread Dion Gillard
From what I know, it's not a bug in the WAS ant tasks. That system property (and many others) are set by ws_ant.bat|sh and setupCmdLine.bat|sh and some tasks rely on those properties. On 8/8/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > -Original Message- > From: Dion Gillard [m

RE: [m2] ant run plugin

2006-08-07 Thread Peter . Pilgrim
> -Original Message- > From: Dion Gillard [mailto:[EMAIL PROTECTED] > Sent: 07 August 2006 17:28 > To: Maven Users List > Subject: Re: [m2] ant run plugin > > On 8/8/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > > > > -Original Message- > > > From: [EMAIL PROTECTED] > > >

Version in snapshot projects not properly changed when downloaded?

2006-08-07 Thread Ciprian Duma
Hi, I have a module "module1" defined with version "1.2-SNAPSHOT" and module3 has a dependency to module1. org.cd.test module1 1.2-SNAPSHOT Module one inherits from a module "parent" which also has the version "1.2-SNAPSHOT". I deployed parent and module1 with mvn deploy and then deleted t

Re: [m2] ant run plugin

2006-08-07 Thread Dion Gillard
On 8/8/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of Lee Meador > Sent: 07 August 2006 16:49 > To: Maven Users List > Subject: Re: [m2] ant run plugin > > I do it like this. I create a websphere cl

ClassNotFoundException or NoClassDefFoundError executing maven2 install

2006-08-07 Thread marc
Hey, first all congratultions for your execellent job. We are using Maven2 in order to develop a project. This project has several modules with dependencies among them, reflected in their pom's. When we try to execute a test from the project root in command line (typing mvn test) all works fine,

RE: [m2] ant run plugin

2006-08-07 Thread LECAN Damien
Hello Just add that in your pom ... org.apache.maven.plugins maven-source-plugin jar ... This will build a source jar each time you build your application jar file D

RE: [m2] ant run plugin

2006-08-07 Thread Peter . Pilgrim
> -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of Lee Meador > Sent: 07 August 2006 16:49 > To: Maven Users List > Subject: Re: [m2] ant run plugin > > I do it like this. I create a websphere classpath and then > use it in the This example, which I

RE: [m2] ant run plugin

2006-08-07 Thread Frederik Bayart
see http://maven.apache.org/plugins/maven-antrun-plugin/usage.html -Original Message- From: Wayne Fay [mailto:[EMAIL PROTECTED] Sent: Monday, August 07, 2006 8:39 AM To: Maven Users List Subject: Re: [m2] ant run plugin Maven does not

Re:AW: [m2] eclipse attached sources for snapshot builds

2006-08-07 Thread Christophe Deneux
Sorry, but i don't known how to switch off the javadoc generation. Christophe -- Initial Header --- >From : [EMAIL PROTECTED] To : users@maven.apache.org Cc : Date : Mon, 7 Aug 2006 17:34:07 +0200 Subject : AW: [m2] eclipse attached sources for snaps

Re: [m2] ant run plugin

2006-08-07 Thread Lee Meador
I do it like this. I create a websphere classpath and then use it in the This example, which I use, sets up things for the websphere end point enabler for use with web services. was.install.root is the folder where websphere is installed. In my case that is c:\Program Files\IBM\WebSphere\AppServ

Re: [m2] ant run plugin

2006-08-07 Thread Wayne Fay
Maven does not invoke Ant from Ant's installed directory. Instead it downloads the Ant libs to the Maven repo and uses them directly. You will need to install your WS lib in the Maven repo and specify it as a on the Ant plugin, so that Maven includes it when running your Ant commands. Wayne On

AW: [m2] eclipse attached sources for snapshot builds

2006-08-07 Thread Fred . Hauschel
great, that's it! But now the javadoc source is also generated, is it possible to switsh it off? the javadoc location in eclispse is not updated ;-( Fredy -Ursprüngliche Nachricht- Von: Christophe Deneux [mailto:[EMAIL PROTECTED] Gesendet: Montag, 7. August 2006 15:38 An: users Betref

Re: elaborate test case results?

2006-08-07 Thread Wayne Fay
More detailed output is stored in files under the target/surefire-reports directory, in both Text and XML format. Wayne On 8/7/06, Kapil Gupta(CT) <[EMAIL PROTECTED]> wrote: Hi, Using test phase am able to execute my test cases and maven gives me result of how many and which test case failed

pom.xml generated from mavenide continues to have problems; unsuitable eclipse-version?

2006-08-07 Thread Markus Baumgartner
Hi, I'm using Eclipse 3.1.1, build Id M20050929-0840 org.apache.maven_1.0.2 Whenever I try to create a pom.xml, it shows errors complaining about missing or bad xml elements like cvc-complex-type.2.4.a: Invalid content starting with element 'name'. One of '{"":artifactId}' is expected

Re: The mvn script errors out when JAVA_HOME is not defined

2006-08-07 Thread Weiqi Gao
On 8/7/06, Denis Cabasson <[EMAIL PROTECTED]> wrote: Maven is juist checking that your JAVA_HOME is correctly set. It definitly needs to know where JAVA is installed. The bin/mvn script only uses JAVA_HOME to compose JAVACMD, which is later invoked.It doesn't use it to do anything else. A

Re: Where is the current stable version?

2006-08-07 Thread Emmanuel Venisse
What is the error? in which test? Emmanuel Zsolt a écrit : I commented every provider out from pom.xml (http://svn.apache.org/repos/asf/maven/scm/trunk) except svn and cvs. I get following build results: Results : Tests run: 44, Failures: 1, Errors: 0, Skipped: 0 I found following jar files:

[m2] ant run plugin

2006-08-07 Thread Peter . Pilgrim
Hi I have a problem defining the ant run. I have copied the Ant tasks to the ANT_1.6.5\lib directory, but Ant does not seem to know where the external ant task? How is M2 invoking Ant? -- Peter Pilgrim UBS Investment Bank, PTS Portal / IT FIRC OPS LDN, 100 Liverpool Street, London EC2M 2RH

Re: Re: m2 WebSphere EJB / EAR Build and Deployment

2006-08-07 Thread Dion Gillard
Have a look at the m1 was plugin - it generates and runs an ant build file with all the tasks in it. On 8/7/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > -Original Message- > From: Stefan Magnus Landrø > [mailto:[EMAIL PROTECTED] > Sent: 07 August 2006 13:16 > To: Maven Users List >

Deploying Output From Assembly

2006-08-07 Thread Douglas Ferguson
I would like to deploy a zip file that is output from my assembly process. Could I just treat this like a 3rd party deploy? Is there any reason to not disable the POM creation? I'd like to tie the assembly and deployment of the zip to the release of the actual maven project? Thanks,

elaborate test case results?

2006-08-07 Thread Kapil Gupta\(CT\)
Hi, Using test phase am able to execute my test cases and maven gives me result of how many and which test case failed or resulted in error. Is there any way so Maven can tell me at which line the test case failed or cause of failure like in Eclipse? Thanks, Kapil CONFIDENTIALITY NOTICE Th

RE: m2, xdoclet and generate-sources problem

2006-08-07 Thread Jörg Schaible
Hi Marco, Marco Mistroni wrote on Monday, August 07, 2006 3:53 PM: > hi all, > i have a multiproject where 2 of the subprojects have to run > xdoclet plugin > in order to generate > local interfaces, ddescriptors etc.. > > for some weird reasons, the generate-sources goal works only on one > of

Blame mechanism with SVN

2006-08-07 Thread Binil Thomas
Hi all, I am using Continuum 1.0.3, Maven 2.0.4 and SVN. Is there anything special I need to do to get the blame mechanism working? I have seen previous posts here, and someone did reply that it is fixed in 1.0.3, but I still am not getting it to work. I am attaching a sample failure email I got

Re: m2 WebSphere EJB / EAR Build and Deployment

2006-08-07 Thread Marco Mistroni
Hello peter, ok found it.. mmm actually interesting part is only when you deploy i don't think it' smuch help it is launche dfrom the directory in RAD where you generate EJBs, so RAD will have already generated binding files for you... hth marco PS let me know if you went further, i

RE: Where is the current stable version?

2006-08-07 Thread Zsolt
I commented every provider out from pom.xml (http://svn.apache.org/repos/asf/maven/scm/trunk) except svn and cvs. I get following build results: Results : Tests run: 44, Failures: 1, Errors: 0, Skipped: 0 I found following jar files: maven-scm-api/target/maven-scm-api-1.0-SNAPSHOT.jar maven-scm-

Re: The mvn script errors out when JAVA_HOME is not defined

2006-08-07 Thread ben short
Thats not the "standard" location for linux or osx. On 8/7/06, Weiqi Gao <[EMAIL PROTECTED]> wrote: On 8/7/06, Vincent Siveton <[EMAIL PROTECTED]> wrote: > JAVA_HOME is a requirement > http://maven.apache.org/download.html#installation That piece of documentation seems to be wrong. By reading

Re: The mvn script errors out when JAVA_HOME is not defined

2006-08-07 Thread Denis Cabasson
Maven is juist checking that your JAVA_HOME is correctly set. It definitly needs to know where JAVA is installed. IMHO, there is no such thing as a "standard" location for Java Denis. Weiqi Gao wrote: > > On 8/7/06, Vincent Siveton <[EMAIL PROTECTED]> wrote: >> JAVA_HOME is a requirement

m2, xdoclet and generate-sources problem

2006-08-07 Thread Marco Mistroni
hi all, i have a multiproject where 2 of the subprojects have to run xdoclet plugin in order to generate local interfaces, ddescriptors etc.. for some weird reasons, the generate-sources goal works only on one of them.. i have myProject | EJB1 | EJB2 both poms have generate-sourc

Re: m2 WebSphere EJB / EAR Build and Deployment

2006-08-07 Thread Marco Mistroni
hello peter, yes, you r perfectly right.. as long as you stick with WAS/RAD everything is done for you. /as soon as you try to be little more 'open sourced' here comes troubles. and, yes, you r right again, WAS/RAD generates binding files for references etc, they are called ibm-ejb-access-bean.x

Re: The mvn script errors out when JAVA_HOME is not defined

2006-08-07 Thread Weiqi Gao
On 8/7/06, Vincent Siveton <[EMAIL PROTECTED]> wrote: JAVA_HOME is a requirement http://maven.apache.org/download.html#installation That piece of documentation seems to be wrong. By reading the script, I certainly get the impression that the script is furiously trying to figure out where my JA

Re:[m2] eclipse attached sources for snapshot builds

2006-08-07 Thread Christophe Deneux
Hi, I think that "-DperformRelease=true" will solve your problem. Christophe -- Initial Header --- >From : [EMAIL PROTECTED] To : users@maven.apache.org Cc : Date : Mon, 7 Aug 2006 09:17:58 +0200 Subject : [m2] eclipse attached sources for snapshot

RE: Re: m2 WebSphere EJB / EAR Build and Deployment

2006-08-07 Thread Peter . Pilgrim
> -Original Message- > From: Stefan Magnus Landrø > [mailto:[EMAIL PROTECTED] > Sent: 07 August 2006 13:16 > To: Maven Users List > Subject: Re: Re: m2 WebSphere EJB / EAR Build and Deployment > > Hi there, > > We also had to write a custom plugin to deploy to was 5.0.2 > (triggering w

Resolving Source code dependency among modules?

2006-08-07 Thread Kapil Gupta\(CT\)
Hi, I have a multi-module (Spring based) project and there is a case where module A is generating source code of module B and module B generates source code of module C. The reason behind this is that I have separated interfaces of my application in module A and using a perl script to generate

RE: m2 WebSphere EJB / EAR Build and Deployment

2006-08-07 Thread Peter . Pilgrim
Hi Marco > -Original Message- > From: Marco Mistroni [mailto:[EMAIL PROTECTED] ==== > > hi peter, > not sure if it can help > a colleague of mine wrote an ant script for building EJB and > deploying them, but it was with ant and it was deployed on WAS 5.1. > i think he used 'custo

[m2] eclipse attached sources for snapshot builds

2006-08-07 Thread Fred . Hauschel
Hey, if i have released an artifact, so there is a ...sources.jar in my releaseRepository that will be downloaded in my local repository. The goal eclipse:eclipse add's this jar as attached Source to the eclipse build path. But if I install a snapshot, the sources wont't be in the eclipse build

Re: Index and delete failure (Maven2 and eclipse plugin)

2006-08-07 Thread Daniel Serodio
[EMAIL PROTECTED] wrote: > Hi, i am using maven 2 as the eclipse plugin (v0.0.9) and I am able to > download stuff from the repositories uding that eclipse plugin. But after > a while the plugin or maven2 (don't know which) complains by use of error > message in the eclipse console. Here is an e

Re: Maven2 PDF plugin

2006-08-07 Thread Vincent Siveton
Hi, This is a maven1 plugin. For Maven2, you could create PDF (and more) using doxia-book. Actually the implementation uses the itext framework. http://maven.apache.org/doxia/book/ The website is not uptodate. Check out from svn to learn more. Cheers, Vincent 2006/8/6, Andreas Koop <[EMAIL P

Re: The mvn script errors out when JAVA_HOME is not defined

2006-08-07 Thread Vincent Siveton
JAVA_HOME is a requirement http://maven.apache.org/download.html#installation Cheers, Vincent 2006/8/7, Weiqi Gao <[EMAIL PROTECTED]>: Hi, I'm learning Maven 2.0.4 and encountered an error when invoking the mvn script. The following piece of script seems to be the cause of my error message:

Index and delete failure (Maven2 and eclipse plugin)

2006-08-07 Thread Markus . Wahl
Hi, i am using maven 2 as the eclipse plugin (v0.0.9) and I am able to download stuff from the repositories uding that eclipse plugin. But after a while the plugin or maven2 (don't know which) complains by use of error message in the eclipse console. Here is an example: Unable to index commons

Re: m2 WebSphere EJB / EAR Build and Deployment

2006-08-07 Thread David J. M. Karlsen
[EMAIL PROTECTED] wrote: Hi I just want to ask has anybody used Maven 2 to build an EJB-JAR, an EAR and successfully deploy them all to WebSphere Server 6.0.x? Yes we have - at least for 5.0.2.x - which should work pretty much the same for 6.0.x. I use the xdoclet plugin for generating WAS

Re: Re: m2 WebSphere EJB / EAR Build and Deployment

2006-08-07 Thread Stefan Magnus Landrø
Hi there, We also had to write a custom plugin to deploy to was 5.0.2 (triggering wsadmin.bat using some jacl scripts). I know other people use the built-in was-ant tasks. Stefan "Marco Mistroni" <[EMAIL PROTECTED]> skrev 07.08.2006 14:10:54: > hi peter, > not sure if it can help > a coll

Re: m2 WebSphere EJB / EAR Build and Deployment

2006-08-07 Thread Marco Mistroni
hi peter, not sure if it can help a colleague of mine wrote an ant script for building EJB and deploying them, but it was with ant and it was deployed on WAS 5.1. i think he used 'custom' ant task from IBM for websphere So, if m2 can't help, you could be able to launch an ant task from m2 sorry to

The mvn script errors out when JAVA_HOME is not defined

2006-08-07 Thread Weiqi Gao
Hi, I'm learning Maven 2.0.4 and encountered an error when invoking the mvn script. The following piece of script seems to be the cause of my error message: if [ -z "$JAVACMD" ] ; then if [ -n "$JAVA_HOME" ] ; then if [ -x "$JAVA_HOME/jre/sh/java" ]

m2 WebSphere EJB / EAR Build and Deployment

2006-08-07 Thread Peter . Pilgrim
Hi I just want to ask has anybody used Maven 2 to build an EJB-JAR, an EAR and successfully deploy them all to WebSphere Server 6.0.x? -- Peter Pilgrim UBS Investment Bank, PTS Portal / IT FIRC OPS LDN, 100 Liverpool Street, London EC2M 2RH, United Kingdom :: Java EE / E-Commerce / Enterprise In

Re: Some Proximity usage questions

2006-08-07 Thread Tamás Cservenák
Hi Adrian, clarification never hurts :) Read below. On 8/7/06, Adrian Shum <[EMAIL PROTECTED]> wrote: for 1): That means, whenever I know two repos are having chance to contain same artifact, I should put them into two separate group? Not quite. Whenever you know that having one "non-snapsh

RE: Some Proximity usage questions

2006-08-07 Thread Adrian Shum
Thanks a lot Tomas. May I clarify a bit? for 1): That means, whenever I know two repos are having chance to contain same artifact, I should put them into two separate group? for 2): I bet the new release will still enable us to access artifacts thru http://hostname/px-webapp/repsitory/artifact-g

scm:update from Parent project

2006-08-07 Thread Jon SlinnHawkins
Hi all, does scm:update work on a flat project structure... I am using a flat projet structure. When i call scm:update on the parent project, the update cmd is only run against the parent, and not the children. Why does this not just call the scm:update on each of the projects individually ?

Re: What is wrong with this code?

2006-08-07 Thread Emmanuel Venisse
you must have the svn provider in your classpath. Emmanuel Zsolt a écrit : Hi, If I execute the code below I get following error: Exception in thread "main" org.apache.maven.scm.manager.NoSuchScmProviderException: No such provider: 'svn'. at org.apache.maven.scm.manager.AbstractScmMan

Re: Where is the current stable version?

2006-08-07 Thread Emmanuel Venisse
Zsolt a écrit : Hi, where can I find the latest stable jar files? What do I need. The latest stable version is 1.0-beta-3. Additionally, how can I compile the sources from subversion repository? I work an Windows. mvn clean install in the root directory, but some provider need a scm clie

Re: [SCM-CVS]

2006-08-07 Thread Emmanuel Venisse
> cvs commit: ignoring target/test-classes (CVS/Entries missing) It would be good to put target directory in .cvsignore file > cvs commit: authorization failed: server mars.pc.local rejected access to /cvsroot/projects for user flefevre You aren't allowed to connect to the server. Emmanuel

Re: [Problem web]

2006-08-07 Thread Emmanuel Venisse
We're working on site and it will be fixed in few days. Emmanuel Francois Le Fevre a écrit : Dear Scm support team, I am new to the communauty. I have tried to have a look to the plugin web site http://maven.apache.org/scm/plugins/introduction.html but every link are broken - or link to no p

Re: Some Proximity usage questions

2006-08-07 Thread Tamás Cservenák
Hi Adrian, thanx for helping improve Proximity! Here are the answers: 1) "the checksum failed" problem is because the aggregation that Proximity performs. It only happens if you have two or more reposes with same (or similar) contents (like having central and apache.snapshots) in the same repo g

RE: Maven Philosophy...

2006-08-07 Thread Jimisola Laursen
vmassol wrote: >> That leaves me with Cobertura and Emma. Correct? > Another option is to spend some bucks on if it fits your needs. It'll > probably cost you less than finding working alternatives but all that > depends on your needs I guess. For example if you spend 1 day looking for > an > al

Re: Assembly issues with modules

2006-08-07 Thread Edwin Punzalan
Just like my comments in the MASSEMBLY-99, I am unable to reproduce the issue. Can you provide a test case? Vinod Panicker wrote: Hi, I've got a project that has modules (multi-project). The problem is that during the assembly creation process, I'm unable to exclude dependencies that are

Some Proximity usage questions

2006-08-07 Thread Adrian Shum
Dear all, I am a newbie and just tried to use Proximity 1.0 RC3 on Windows + Tomcat 5.0.30. There are some issues that I cannot figure out and wish someone can give me a helping hand: 1) I have setted up several remote repositories in Proximity, including central, ibiblio and codehaus ones. I f

Re: Using another server to run Continuum

2006-08-07 Thread Emmanuel Venisse
It isn't possible actually, but you'll can do it in 1.1 Emmanuel Matheus Leite a écrit : Hi all, Is there a standard way to deploy Continuum using an existing server, instead of using the embedded Jetty server? If not, is this a planned feature? Thanks in advance, Matheus --

RE: Maven Philosophy...

2006-08-07 Thread Vincent Massol
> -Original Message- > From: Jimisola Laursen [mailto:[EMAIL PROTECTED] > Sent: dimanche 6 août 2006 19:49 > To: users@maven.apache.org > Subject: Re: Maven Philosophy... > > > > Scott Battaglia wrote: > > > > Projects released under an open source license can qualify for a > > non-com