Re: weird maven behaviour

2007-09-27 Thread priyasubu
thanks Tim that worked like a charm Cheers Priya Tim Kettler wrote: > > Hi, > > have you tried excluding xerces explicitly from the > commons-configuration dependency? > > -Tim > > priyasubu schrieb: >> Sorry about that.Its not a complaint I did not know how to figure that >> one >>

Re: Multimodule code coverage report

2007-09-27 Thread dvicente
you can do a "mvn org.codehaus.mojo:dashboard-maven-plugin:1.0-SNAPSHOT:dashboard" As I suggested here:- http://jira.codehaus.org/browse/MOJO-899 http://jira.codehaus.org/browse/MOJO-899 Dan Tran wrote: > > umm, i actually have codehaus snaphot repo thru my maven-proxy, and i do > see > th

Re: regarding profiles

2007-09-27 Thread Tim Kettler
Hi, that's a little sparse information to answer you problem. At least post the relevant pom snippets for profile activation and perhaps the mvn command you invoke if there are profile related options in it. -Tim zalym schrieb: I have 2 profiles, one to access it within my office and the ot

Re: weird maven behaviour

2007-09-27 Thread Tim Kettler
Hi, have you tried excluding xerces explicitly from the commons-configuration dependency? -Tim priyasubu schrieb: Sorry about that.Its not a complaint I did not know how to figure that one out I do know the issue seems to be that there is a jar conflict with xerces and apache commons configu

Re: How to suppress the deploy for a given module?

2007-09-27 Thread Tim Kettler
Tomasz Pik schrieb: On 9/27/07, Yan Huang <[EMAIL PROTECTED]> wrote: Hello, Is there a way to skip the "deploy" phase for a module? I tried "skip" tag for the "maven-deploy-plugin" and it seems not working ... You've a parent pom with some child modules and do not want to 'deploy' one of them

Re: Activate Profile

2007-09-27 Thread Tim Kettler
Hi, Yan Huang schrieb: is there a way to do what I'm trying to do? You can approximate with: maven.test.skip !true This should trigger whenever the variable content don't equals 'true'. This includes the case when the variable isn't set at all. In "" tag, is there a way to

Re: Improving Maven Site Docs

2007-09-27 Thread Rodrigo Madera
Somebody get the extinguisher, quickly!! On 9/28/07, Kevin Jackson <[EMAIL PROTECTED]> wrote: > > Hi, > > Regarding the XML thing (OT wrt documentation - sorry). > > XML basically sucks as a human readable format, it's a more verbose > form of tree/list syntax (like s-expr). > > One problem I have

Re: Improving Maven Site Docs

2007-09-27 Thread Kevin Jackson
Hi, Regarding the XML thing (OT wrt documentation - sorry). XML basically sucks as a human readable format, it's a more verbose form of tree/list syntax (like s-expr). One problem I have with mvn that I don't have with Ant is that there are no 'shorthand' options in mvn ie: to declare a single

maven-war-plugin confusion

2007-09-27 Thread Kram
Hi All, Im trying to get my project to work which has a custom build directory (and no, I cannot use the recommended maven structure) and I need to use the war plugin to get all my resources sorted out. Currently its mostly going ok, but im having trouble with the web.xml file. my project is l

Re: weird maven behaviour

2007-09-27 Thread priyasubu
Sorry about that.Its not a complaint I did not know how to figure that one out I do know the issue seems to be that there is a jar conflict with xerces and apache commons configuration uses a version that conflicts with the latest which is used by other projects so I added my dependency explicitly

regarding profiles

2007-09-27 Thread zalym
I have 2 profiles, one to access it within my office and the other from my home. The office profile is active by default. Recently, I cleaned my repository and tried to run maven, but it always contacted my office profile, even though I specifically mentioned the home profile. I could resolve

Maven multilple dependency

2007-09-27 Thread Raj Pillai
Hi Maven Users, Is it possible to add multiple jars in the dependency dynamically or as a group. Else how else to handle this best. I have like 30 jars under a specific directory and I am using systemPath way to add the dependency. All these jars has timestamp in its name and will kee

weird maven behaviour

2007-09-27 Thread priyasubu
I seem to get a very weird maven behaviour Basically I sometimes get allmy tests to pass and sometimes get all mytimes to fail Caused by: java.lang.IllegalArgumentException: No attributes are implemented at org.apache.xerces.jaxp.DocumentBuilderFactoryImpl.setAttribute(DocumentBuilderFac

Re: weird maven behaviour

2007-09-27 Thread Wayne Fay
Is this just a general complaint or do you expect someone to be able to respond effectively using the very little bit of information you've provided about a transient problem with an unknown root cause? Use mvn -e in the future with all builds. When you get a failure, compare the output to what yo

Re: Maven multilple dependency

2007-09-27 Thread Wayne Fay
Write a shell script to punch out nodes (to a file or command line) that you can copy and paste into your pom every time it changes. I know of no other way to handle this situation. Ideally you won't use system scope either -- you'll "mvn install:install-file" those files and then knock out the

weird maven behaviour

2007-09-27 Thread priyasubu
I seem to get a very weird maven behaviour Basically I sometimes get allmy tests to pass and sometimes get all mytimes to fail Caused by: java.lang.IllegalArgumentException: No attributes are implemented at org.apache.xerces.jaxp.DocumentBuilderFactoryImpl.setAttribute(DocumentBuilderFac

Maven multilple dependency

2007-09-27 Thread Raj Pillai
Hi Maven Users, Is it possible to add multiple jars in the dependency dynamically or as a group. Else how else to handle this best. I have like 30 jars under a specific directory and I am using systemPath way to add the dependency. All these jars has timestamp in its name and will kee

Re: my lobotomy [was: Improving Maven Site Docs]

2007-09-27 Thread Rodrigo Madera
> > P.S. Since I couldn't, in good conscience, keep contributing to > marginally topical branches of this thread without actually > contributing "real" content, I've added a new "Maven for Make and > GNU Autotools" users section to the "Getting Started with Maven" > wiki page:

Re: Improving Maven Site Docs (was maven is hard)

2007-09-27 Thread Eric Redmond
Yeah - you can acutally find where the error is most of the time by running mvn -e [blah:blah] It's in the stack trace. But you're right, one would hope it would print to the screen. -- Eric Redmond http://blog.propellors.net On 9/27/07, Lee Meador <[EMAIL PROTECTED]> wrote: > > The way I usua

my lobotomy [was: Improving Maven Site Docs]

2007-09-27 Thread Alan D. Salewski
On 9/27/07, Lally Singh <[EMAIL PROTECTED]> spake thus: > On 9/27/07, Alan D. Salewski <[EMAIL PROTECTED]> wrote: > > > I'm not suggesting that the maven 2.x 'install' build life cycle phase > > be renamed at this point because maven is well-enough established that > > doing so would be needlessly

Re: Capturing the Build Date

2007-09-27 Thread Kalle Korhonen
Use the buildnumber plugin ( http://commons.ucalgary.ca/projects/maven-buildnumber-plugin/howto.html). It has a ${timestamp} property. Kalle On 9/27/07, pdelaney <[EMAIL PROTECTED]> wrote: > > > Hello; > > I am trying to capture the build date or date at which the application got > build and jar

Re: Parent versions

2007-09-27 Thread Wendy Smoak
On 9/27/07, Morgovsky, Alexander (US - Glen Mills) <[EMAIL PROTECTED]> wrote: > In my codebase I tried giving parent versions to sub-projects in the > form of expressions like ${code.version}. This fails in Maven 2.0.4. > Is there any plan to have this implemented in future versions? > Otherwise,

Re: How to suppress the deploy for a given module?

2007-09-27 Thread Tomasz Pik
On 9/27/07, Yan Huang <[EMAIL PROTECTED]> wrote: > Hello, > > Is there a way to skip the "deploy" phase for a module? I tried "skip" tag > for the "maven-deploy-plugin" and it seems not working ... You've a parent pom with some child modules and do not want to 'deploy' one of them during 'mvn depl

Maven 2 Parent Versions

2007-09-27 Thread Morgovsky, Alexander \(US - Glen Mills\)
Has the bug whereby it is not possible to have an expression of the form ${code.version} in the version element of a parent reference been fixed in Maven 2? Thank you. This message (including any attachments) contains confidential information intended for a specific individual and purpose, and

Re: Improving Maven Site Docs (was maven is hard)

2007-09-27 Thread Lee Meador
The way I usually get a broken pom is to copy a snippet of xml from somewhere and paste it one line above where it goes. For example, I need a new dependency in some child pom. I go to the parent where I have all my versions in dependency management and select a section for the thing I want to add

How to suppress the deploy for a given module?

2007-09-27 Thread Yan Huang
Hello, Is there a way to skip the "deploy" phase for a module? I tried "skip" tag for the "maven-deploy-plugin" and it seems not working ... Thanks Yan

Re: email problem

2007-09-27 Thread olivier lamy
{cont_home}/apps/continuum/webapp/WEB-INF/classess/META-INF/pluxus/application.xml Here {cont_home}/conf/plexus.xml Search mail.smtp.host localhost mail.smtp.port 25 -- Ol

Re: email problem

2007-09-27 Thread I am Who i am
i'm not using tomcat and there is no provision for it either in application.xml or plexus.xmlunder {cont_home}/apps/continuum/conf i also looked under {cont_home}/apps/continuum/webapp/WEB-INF/classess/META-INF/pluxus/application.xml i alsot tried to search file containing word "smtp" within co

Re: email problem

2007-09-27 Thread olivier lamy
With tomcat configure your jndi mail session in the context file[1]. With plexus-runtime look in conf/plexus.xml -- Olivier [1] http://docs.codehaus.org/display/CONTINUUMUSER/Continuum+on+Tomcat 2007/9/27, I am Who i am <[EMAIL PROTECTED]>: > > Hi > > Where do i configure my email server host an

Re: email problem

2007-09-27 Thread Dan Tran
should be in one of those xml file under directory named 'conf' On 9/27/07, I am Who i am <[EMAIL PROTECTED]> wrote: > Hi > > Where do i configure my email server host and port in continuum beta-3? > > Thanks >

email problem

2007-09-27 Thread I am Who i am
Hi Where do i configure my email server host and port in continuum beta-3? Thanks

Re: Activate Profile

2007-09-27 Thread Yan Huang
is there a way to do what I'm trying to do? In "" tag, is there a way to achieve "or" condition? i.e. the profile will be activated if one of condition is met? On 9/27/07, Michael McCallum <[EMAIL PROTECTED]> wrote: > > no that is a test for a property value where no set would be "" its not a > b

Re: Using a parent POM plugin config in only some child modules?

2007-09-27 Thread Tomasz Pik
On 9/27/07, Steinar Bang <[EMAIL PROTECTED]> wrote: > > "Tomasz Pik" <[EMAIL PROTECTED]>: > > > Configure plugins in profiles in parent pom and activate profiles in > > child poms? This won't be automatic (I do not know if there's a way > > to activate profile using packaging, maybe there's?)

Re: Activate Profile

2007-09-27 Thread Michael McCallum
no that is a test for a property value where no set would be "" its not a boolean test On Friday 28 September 2007 07:29, Yan Huang wrote: > Hello, > > If I want to activate a profile if either of the following two conditions > is satisfied, how can I do it? > >- if the environment variable ${

Re: Why Maven is Hard?

2007-09-27 Thread Raphaël Piéroni
Hi Elizabeth, Please use the http://docs.codehaus.org/display/MAVENUSER/ wiki pages. Raphaël 2007/9/26, Sommers, Elizabeth <[EMAIL PROTECTED]>: > > > > -Original Message- > From: EJ Ciramella [mailto:[EMAIL PROTECTED] > What I want is an active mailing list for plugin developers. I have

Re: Improving Maven Site Docs (was maven is hard)

2007-09-27 Thread Lally Singh
On 9/27/07, Wayne Fay <[EMAIL PROTECTED]> wrote: > >1. If maven has no pom in current directory. mvn should display help > >similar to this from perforce: > > This sounds reasonable. Other people have requested similar > functionality. We should make sure this lands in JIRA for future > imp

Capturing the Build Date

2007-09-27 Thread pdelaney
Hello; I am trying to capture the build date or date at which the application got build and jared up into a properties file called application.properties. I want to take this and display it on the web application for the about.html. I have found most of the information I am looking for lik

Re: Improving Maven Site Docs

2007-09-27 Thread Lally Singh
On 9/27/07, Alan D. Salewski <[EMAIL PROTECTED]> wrote: > I'm not suggesting that the maven 2.x 'install' build life cycle phase > be renamed at this point because maven is well-enough established that > doing so would be needlessly disruptive. But, thinking back to my > pre-maven-lobotomy days, i

Activate Profile

2007-09-27 Thread Yan Huang
Hello, If I want to activate a profile if either of the following two conditions is satisfied, how can I do it? - if the environment variable ${maven.test.skip} is not defined - if the environment variable ${maven.test.skip} is not "true" I was hoping the tag below can take care of it but

Re: [m2] using Letters in our build version?

2007-09-27 Thread Wayne Fay
Thinking about it a bit more, I think I must be at least a little wrong as I have seen 2.0-alpha-1 and 1.0.0-alpha-2-SNAPSHOT and stuff. I guess the best option is to go dig in the source. Tell us what you find. Sorry, it seems versions are a little confusing to me as well today... Wayne On 9/27

Re: Copying resource files into custom directory

2007-09-27 Thread Dhamothar
I guess I figured the way. /com/wssc/ad/phonebook/utils Dhamothar wrote: > > Hello, > > I am new to Maven. I have the following problem. Need your expertise > knowledge on this. > > I have few Application related properties file. When I do compile I > expect all goes to the respectiv

Problem Coping *.properties file into respective folder

2007-09-27 Thread Seenivasagam, Dhamotharakkannan
Hello, I have few Application related properties file. When I do compile I expect all goes to the respective folder(In my case my properties file is under ${basedir}/phonebook/src/com/wssc/ad/phonebook/utils after compilation I expect it to be copied under ${basedir}/phonebook/WebContent/

Re: When builds are done in multi-module projects ?

2007-09-27 Thread Emmanuel Venisse
It isn't recommended to have the same source tree twice in continuum if pom files have the same version. With this configuration, continuum can't resolve correctly the build order so a project B that must be built after an other project A is built before, then when A is built, Continuum detect a

Re: Bug in continumm beta-3?

2007-09-27 Thread Emmanuel Venisse
It's a known issue in mvn.bat in maven 2.0.7. It's fixed in maven-2.0.x branch : http://svn.apache.org/repos/asf/maven/components/branches/maven-2.0.x/maven-core/src/bin/mvn.bat Emmanuel I am Who i am a écrit : Hi All I installed continuum beta-3 and successfully configured it to work with c

Re: Improving Maven Site Docs (was maven is hard)

2007-09-27 Thread Patrick Moore
On 9/27/07, Wayne Fay <[EMAIL PROTECTED]> wrote: > > > >3. have the concept of a reverse archetype -- mvn runs and figures > out > >what the pom.xml should look like based on the current directory > >structure. Currently the archetype concept says "*if* you make your > >directory st

Re: [m2] using Letters in our build version?

2007-09-27 Thread Wayne Fay
First off, I'm pretty sure the -'s are not allowed in your version except perhaps in the last stanza. This is roughly the version regexp: /\d+\.\d+\.\d+\.\w+/; So you will need to try 1.0.0.E1B.SNAPSHOT. But I'm not even sure that will work. Why do you need to use letters? Realistically this is

Re: Why Maven is Hard?

2007-09-27 Thread Patrick Moore
Here are some random thoughts. What would happen if "mvn help" printed out . mvn faq - faq for the plugin mvn myfaq - your personal faq (creates a personal site/maven-faq.xml ) mvn faqreport - reports something that you think should be an faq mvn faqreport would generate

Copying resource files into custom directory

2007-09-27 Thread Dhamothar
Hello, I am new to Maven. I have the following problem. Need your expertise knowledge on this. I have few Application related properties file. When I do compile I expect all goes to the respective folder(In my case my properties file is under ${basedir}/phonebook/src/com/wssc/ad/phonebook/

Re: Improving Maven Site Docs (was maven is hard)

2007-09-27 Thread Wayne Fay
>1. If maven has no pom in current directory. mvn should display help >similar to this from perforce: This sounds reasonable. Other people have requested similar functionality. We should make sure this lands in JIRA for future implementation. >2. have "mvn help" be able to run out of

RE: Improving Maven Site Docs (was maven is hard)

2007-09-27 Thread Brian E. Fox
What's wrong with mvn -? As a way to get help? If I am confused about other cli tools, I usually try foo -? Or foo /? Before anything else. Obviously the -? Needs to be improved, but this is much easier to do than a bunch of magic in the help plugin. Also it WILL work even if the repos are broken.

RE: Improving Maven Site Docs

2007-09-27 Thread Brian E. Fox
This thread is getting way off topic. I started a new thread to focus on meaningful positive suggestions for how to improve the site. I'm not at all suggesting that the site will solve the world's problems, but this is where I personally decided to get feedback. Like many of the other Maven deve

Re: Eclipse + Maven2 +WTP 2.0

2007-09-27 Thread Arnaud HERITIER
The issue is opened here : http://jira.codehaus.org/browse/MECLIPSE-264 And there's already a patch. I promised to appl it before the end of the next week. If you want to participate ;-) On 27/09/2007, Thor <[EMAIL PROTECTED]> wrote: > > Thanks a lot Angel. I'll try it right away. > You're using T

Re: Improving Maven Site Docs (was maven is hard)

2007-09-27 Thread Patrick Moore
mvn help should always work no matter how broken the repository or the pom is. otherwise it isn't help. Usually the thing that is broken with any product is the configuration/installation. Requiring that mvn help have a god pom.xml or even a good repo to work is missing the point of "help" think

RE: Why Maven is Hard?

2007-09-27 Thread Brian E. Fox
Most of the site is generated and is in svn. You can check out the site from here: http://svn.apache.org/repos/asf/maven/site/trunk and run mvn site to generate it in target/site. Then you can create patches and put them in jira. You may need to add the snapshot repo to your settings if the site is

Re: maven-ant-tasks-2.0.7: How to package an artifact?

2007-09-27 Thread Tim Kettler
Stefan Prange schrieb: Graham Leggett wrote: On Thu, September 27, 2007 1:15 pm, Stefan Prange wrote: Is there a reason for this decision? The simplest way to handle ears and wars is to have the war as an artifact, and the ear as an artifact, and just let maven do everything for you. What doe

Re: Using maven for JavaScript projects

2007-09-27 Thread Adam Altemus
Hey all, Sorry for coming into this discussion late. If anyone wants to use anything from our JavaScript plugin, feel free to help yourself. It can be found at http://ossi.mobilvox.com/maven-js-plugin or http://sf.net/projects/maven-js-plugin We're using a modded version of JsMin, which has sh

Re: Improving Maven Site Docs (was maven is hard)

2007-09-27 Thread Patrick Moore
Hi Wayne -- oh I don't think you guys need to get the list from everyone ... it is very well impossible and trying to be "complete" is like trying to be "perfect". It is usually not obtainable. The list I threw out was an example of things that are simple without maven that seem to be close to imp

Re: Using maven for JavaScript projects

2007-09-27 Thread Manos Batsis
Dan Tran wrote: any plan to deploy a site? There is a snapshot online [1] but the documentation is simply non-existent. I intent to make a release after a few code changes and when the documentation is acceptable (just need a week or so). [1] http://dev.abiss.gr/mvn-jstools/ Manos

Re: Using maven for JavaScript projects

2007-09-27 Thread Manos Batsis
nicolas de loof wrote: To Manos : how do you integrate with jsDoc ? AFAIK this is a JS based tool, not really simple to invoke from a Java Mojo. Or maybe you use a JS Mojo ? Through Rhino. A simple way is to call his Main.exec, the other is a bit more complicated and involves putting java var

Re: maven-ant-tasks-2.0.7: How to package an artifact?

2007-09-27 Thread Stefan Prange
Tim Kettler wrote: > >> How can I use the maven-ant-tasks-2.0.7 to package the war, i.e. to say >> the >> equivalent of "mvn package" ? > > You can't. > > The maven ant tasks enable you to use the maven dependency management > features from ant, nothing more. > Hi Tim, thanks for clarifying

Re: maven-ant-tasks-2.0.7: How to package an artifact?

2007-09-27 Thread Stefan Prange
Graham Leggett wrote: > > On Thu, September 27, 2007 1:15 pm, Stefan Prange wrote: > > Is there a reason for this decision? The simplest way to handle ears and > wars is to have the war as an artifact, and the ear as an artifact, and > just let maven do everything for you. > > What does buildi

Bug in continumm beta-3?

2007-09-27 Thread I am Who i am
Hi All I installed continuum beta-3 and successfully configured it to work with clearcase, and maven2 the problem is eventhough maven build is failing, continuum still showing it as successful? i use maven-2.0.7 and i already see the following in my mvn.bat if "%MAVEN_TERMINATE_CMD%" == "on" e

Re: Improving Maven Site Docs

2007-09-27 Thread Alan D. Salewski
On Thu, Sep 27, 2007 at 06:57:17PM +0200, Insitu spake thus: > [...] > 2. they have a hard time understanding all the "magic" behind $> mvn > install when they are used to $> ant all or $> make all. [...] People with experience using the conventions of other build tools are likely to be confu

RE: Improving Maven Site Docs (was maven is hard)

2007-09-27 Thread Brian E. Fox
Thank you this is helpful. I agree that this part of the site is confusing. -Original Message- From: Gisbert Amm [mailto:[EMAIL PROTECTED] Sent: Thursday, September 27, 2007 4:42 AM To: Maven Users List Subject: Re: Improving Maven Site Docs (was maven is hard) I've recently been confuse

[m2] using Letters in our build version?

2007-09-27 Thread Mick Knutson
What is the rule on adding letters to our build version? I have tried "E1B-1.0-SNAPSHOT" and "1.0-E1B-SNAPSHOT" and neither work -- 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_

Re: Improving Maven Site Docs

2007-09-27 Thread Andrew Leer
Has anyone ever used Tiddlywiki as a means to learn something as complex as Maven2? That really seems to help in my option. It's alot faster to access than the site and you can refer back to it when you need to learn how to do something. On 9/27/07, Insitu <[EMAIL PROTECTED]> wrote: > "Lee Meado

Re: Multimodule code coverage report

2007-09-27 Thread Dan Tran
umm, i actually have codehaus snaphot repo thru my maven-proxy, and i do see the plugin get downloaded. Perhaps, I need to specify mojo full name. -D On 9/27/07, dvicente <[EMAIL PROTECTED]> wrote: > > HI, > > as described in http://mojo.codehaus.org/dashboard-maven-plugin/usage.html > http://m

Re: Does Cargo m2 plug-in support oc4j 10.1.3 ?

2007-09-27 Thread Farhan Sarwar
I hear you.. Farhan. On 9/27/07, Wayne Fay <[EMAIL PROTECTED]> wrote: > If you don't get a response after a while and you can't find any info > yourself on it, you can probably assume that there is no current > support for oc4j 10.1.3. And if you want it in any reasonable time > period, you'll pr

Re: Does Cargo m2 plug-in support oc4j 10.1.3 ?

2007-09-27 Thread Wayne Fay
If you don't get a response after a while and you can't find any info yourself on it, you can probably assume that there is no current support for oc4j 10.1.3. And if you want it in any reasonable time period, you'll probably need to code it yourself and contribute it. Wayne On 9/27/07, Farhan Sa

Re: problem deploying snapshots

2007-09-27 Thread Insitu
Hello, This is normal maven behavior for snapshots deployment: each snapshot is deployed with a unique version number. The metadata reflects this and defines the lates snapshot so that when you ask for foo:bar:1.0-SNAPSHOT you really get foo:bar:1.0-2342344234665.2423. I think you can change this

Re: Multimodule code coverage report

2007-09-27 Thread dvicente
HI, as described in http://mojo.codehaus.org/dashboard-maven-plugin/usage.html http://mojo.codehaus.org/dashboard-maven-plugin/usage.html you must add this in your pom.xml : Codehaus Snapshots http://snapshots.repository.codehaus.org/

Re: Improving Maven Site Docs

2007-09-27 Thread Insitu
"Lee Meador" <[EMAIL PROTECTED]> writes: > If XML is the problem for Maven, why is it not for Ant. Can anyone claim > that a makefile's syntax is any easier to understand? In addition, make > isn't procedural or sequential and that didn't, back in the day, generate > loads of comments. > > It's no

Re: problem deploying snapshots

2007-09-27 Thread Thor
Uploading: > http://s-comm-iss-d1:/archiva/repository/snapshots//org/andromda/ > cartridges/andromda-spring-cartridge/3.3-SNAPSHOT/andromda- > spring-cartridge-3.3- > 20070927.154235-1.jar > [INFO] Retrieving previous metadata from snapshots > [INFO]

Re: Multimodule code coverage report

2007-09-27 Thread Dan Tran
is there any special instruction interm of configuration that allow me to run dashboard-report:dashboard on command line. maven throws mojo not found when I run this my appology if i miss this configuration already in the site doc. -D On 9/27/07, dvicente <[EMAIL PROTECTED]> wrote: > > The p

Re: Eclipse + Maven2 +WTP 2.0

2007-09-27 Thread Thor
Thanks a lot Angel. I'll try it right away. You're using Tomcat, I use Oracle OC4J. I'll let you know if it works... On 9/27/07, Angel Sotirov <[EMAIL PROTECTED]> wrote: > > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 >

RE: Why Maven is Hard?

2007-09-27 Thread Marziou, Gael
This book rocks especially the chapter 15 on j2ee. After spending weeks trying to build similar simple project in maven, it's great to find this, thanks. Now, I'll try to convert this from Geronimo to WebLogic, in case of success I'll share. -- Gael > -Original Message- > From: Brian E

Re: Detecting build failures in linux

2007-09-27 Thread Alan D. Salewski
On Thu, Sep 27, 2007 at 01:16:25PM -0300, Martin Alejandro Villalobos spake thus: > Hello, I have a question. > I want write a little script in linux that detect when maven is > returning build failure? > Somebody knows how I can do it? > > Thaks to all and cheers. > > Martin.

Re: Does Cargo m2 plug-in support oc4j 10.1.3 ?

2007-09-27 Thread Farhan Sarwar
Well actually i have posted there already, but apparently that list is not as active as i thought it would be. Farhan. On 9/27/07, Wayne Fay <[EMAIL PROTECTED]> wrote: > Any reason you're asking on this list rather than on the Cargo Users > list directly? > > I personally never used Cargo when I

Re: Eclipse + Maven2 +WTP 2.0

2007-09-27 Thread Angel Sotirov
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Thor wrote: > Hello everyone in the list. And thanks for reading... > > First of all, let me tell you that I'm a newbie at Maven 2, but I'm already > enjoying it... > > Here's my issue: > I have a multi modules project: > - The API project > - The Core

Re: Improving Maven Site Docs

2007-09-27 Thread Alan D. Salewski
On Thu, Sep 27, 2007 at 10:23:28AM -0500, Lee Meador spake thus: > [...]Can anyone claim > that a makefile's syntax is any easier to understand? > [...] > -- Lee *dons flame retardant suit* Frankly, yes. A Makefile is transparent in way that maven and maven plugins are not. An individual Makefil

Detecting build failures in linux

2007-09-27 Thread Martin Alejandro Villalobos
Hello, I have a question. I want write a little script in linux that detect when maven is returning build failure? Somebody knows how I can do it? Thaks to all and cheers. Martin. - To unsubscribe, e-mail: [EMAIL PROTECTED] F

Re: Why Maven is Hard?

2007-09-27 Thread Lee Meador
Andy, You said, "My *personal* opinion about why *I* find maven so hard is the complete mental disconnect between the lifecycle phase (task) and the configuration, coupled with the voodoo of 'convention'." I think thats an amazingly concise description of what is hard about Maven. I do think the

Re: Using maven for JavaScript projects

2007-09-27 Thread Harlan Iverson
Yea, definitely alright and encouraged :) The first project is GPL soon to be LGPL, but the POM I'd consider to be whatever Selenium is since I mostly took my executions from there; and the second is MIT. Harlan On 9/27/07, nicolas de loof <[EMAIL PROTECTED]> wrote: > > Thanks a lot for those lin

Re: Does Cargo m2 plug-in support oc4j 10.1.3 ?

2007-09-27 Thread Wayne Fay
Any reason you're asking on this list rather than on the Cargo Users list directly? I personally never used Cargo when I was deploying to oc4j, instead we had some old ant targets that took care of things for us. And I've never tried deploying to oc4j 10.1.3 in any fashion, we moved away from OAS

RE: Re: Replacing Proprietary Build System With Maven

2007-09-27 Thread Chris Helck
Could this be done with the tag in ? You would exclude B-I and B-P. -chris -Original Message- From: news [mailto:[EMAIL PROTECTED] On Behalf Of Insitu Sent: Thursday, September 27, 2007 10:56 AM To: users@maven.apache.org Subject: Re: Replacing Proprietary Build System With Maven > > B

Re: When builds are done in multi-module projects ?

2007-09-27 Thread Damien Lecan
> I will reinit all my Continuum instance (fresh database, fresh > checkout), activate scm debug and see what happen later. > > I will plan 2 build definitions : > 1. run clean deploy every even hours > 2. run clean deploy site-deploy every odd hours Ok, here are the results. I ran concurrently

Re: sending a file to remote place through ftp

2007-09-27 Thread houzecl
for what you are looking for, you may probably check here: http://www.nabble.com/Assembly-plugin---how-to-copy-resulting-archives---tf4322070s177.html#a12307739 Christian-Luc Sonar, Nishant wrote: > > Hi Users, > > > > I need to copy a file to a remote server through ftp://server/place ,

Re: Why Maven is Hard?

2007-09-27 Thread Wayne Fay
> > How can you help people who ask this question (and others > > like it)? I agree that _more_ documentation is not > > necessarily the magic bullet that many believe it is. > > The argument that "some people don't read documentation so there is no > point in writing any more" is a non-sequitor. P

problem deploying snapshots

2007-09-27 Thread melpelotones
project information for andromda-spring-cartridge 3.3-20070927. 154235-1 [INFO] [INFO] BUILD SUCCESSFUL [INFO] [INFO] Total time: 11 seconds [INFO] Finish

Re: Why Maven is Hard?

2007-09-27 Thread Lee Meador
That sounds as easy as herding cats. Trying to get all the people on the user list to NOT do anything is unlikely. The fact is, as I see it, its easier to just give a quick answers to questions that strike my fancy than it is to hunt it down in the docs and point them to it. That allows me to limi

sending a file to remote place through ftp

2007-09-27 Thread Sonar, Nishant
Hi Users, I need to copy a file to a remote server through ftp://server/place , is there a plugin that picks the specific file and ftpes to the destination, The distribution management way is not what I want I don't want the artifacts to be hosted to a remote repository , I want to send a file

Re: Using maven for JavaScript projects

2007-09-27 Thread nicolas de loof
Thanks a lot for those links, i'll take a look tomorow. Is it ok with you that I pick up code and/or ideas from this projects ? I didn't found a License notice on the first one. The second one is MIT-licensed, not sure if I can get code an re-package it under apache license ? Nico. 2007/9/27, Ha

Does Cargo m2 plug-in support oc4j 10.1.3 ?

2007-09-27 Thread mfs
Guys, Wanted to know if the current cargo m2 plugin has support for OC4J 10.1.3 container ? The containers list in the cargo documentation lists m2 support for oc4j 9.x only. Though i came across a couple of threads on the forum which seemed to give an impression that the same can be used for de

Re: Eclipse/Maven2 integration info

2007-09-27 Thread Lee Meador
Alexander, We sometimes do something like your Ant script but with batch/script files. Its not cross-platform between Windows and Linux but each one is so simple it doesn't matter much. -- Lee On 9/14/07, Alexander Sack <[EMAIL PROTECTED]> wrote: > > Hi Everybody: > > You know Eclipse/Maven2 int

Re: Using maven for JavaScript projects

2007-09-27 Thread nicolas de loof
Sourceforge has a patch entry in tracker (http://sourceforge.net/tracker/?atid=717014&group_id=128899&func=browse) You can also send it to me at [EMAIL PROTECTED] Thanks a lot for contributing. 2007/9/27, Insitu <[EMAIL PROTECTED]>: > If I want to contribute something, where do I send patches ?

Re: Replacing Proprietary Build System With Maven

2007-09-27 Thread Damien Lecan
> Thanks for the reply and excellent clarification. Instead of OSGi bundle > just think JAR. I have the structure that you suggested except that I > did not use an assembly because I could not see how to create a JAR that > only contained the contents of I and P and not all of their dependencies.

Eclipse + Maven2 +WTP 2.0

2007-09-27 Thread Thor
Hello everyone in the list. And thanks for reading... First of all, let me tell you that I'm a newbie at Maven 2, but I'm already enjoying it... Here's my issue: I have a multi modules project: - The API project - The Core project - The WAR project - The EAR Project The thing is that I need to u

Re: Replacing Proprietary Build System With Maven

2007-09-27 Thread Insitu
> > B API (B-I) depends on artifact A1. B implementation (B-P) depends on > the B API (obviously) and transitively on artifact A1. > > C API (C-I) does not depend on anything. But C implementation (C-P) > depends on artifact A2 as well as APIs for B (B-I) and C (C-I) and > transitively on artifact

Re: Improving Maven Site Docs

2007-09-27 Thread Lee Meador
If XML is the problem for Maven, why is it not for Ant. Can anyone claim that a makefile's syntax is any easier to understand? In addition, make isn't procedural or sequential and that didn't, back in the day, generate loads of comments. It's not that you really were arguing the "pro" side of thos

RE: Why Maven is Hard?

2007-09-27 Thread andy law \(RI\)
> > > > This thread has highlighted the fact that the documentation doesn't > > help new users of maven, or users of maven who have no desire to > > become experts. Just dumping yet more documentation on this > group of > > people isn't going to answer their questions. > > There are some quest

  1   2   >