Re: spring handlers

2011-12-05 Thread Dirk Olmes
On 12/05/2011 03:22 PM, jackett_dad wrote: > I am having an issue that has been encountered before. The issue concerns > the inclusion of a file called spring.handlers that exists in multiple > spring jars that are included with a project. I'm building a release > version of a jar that includes i

Re: BUILD FAILURE : FactoryBean does not take parameters

2011-12-05 Thread Wayne Fay
> The file -ValueDomainServiceFactory.java- contain the code where maven > gives an error: > ValueDomainServiceFactory.java:[24,61] type > org.springframework.beans.factory.FactoryBean does not take parameters The Maven compiler plugin simply reaches out to javac and uses it directly to compile yo

Re: What to do with .pom files?

2011-12-05 Thread Wayne Fay
>> They are in Maven POM (.pom) format and I would like to execute them to >> read their content. They aren't too small files, the largest one is 36,5Mb >> which is actually not too large since we're talking about an eBook with >> 5-600 pages. I can't open it neither in browser nor in Wordpad/Notep

Re: problem with dependencies

2011-12-05 Thread Wayne Fay
> I noticed that after i build my war for ProjectA, that the external > jars that were marked as provided in ProjectB got pulled into my lib > directory. > This does not seem correct to me. Can anyone explain why this changed > from maven 2? It should not have changed. Can you provide a sample se

Re: What to do with .pom files?

2011-12-05 Thread Ben Caradoc-Davies
On 06/12/11 09:36, Ben Caradoc-Davies wrote: Maven POM files are called pom.xml and do not end in ".pom". I take that back: when deployed with artifacts, they do end in .pom! -- Ben Caradoc-Davies Software Engineer CSIRO Earth Science and Resource Engineering Australian Resources Research Cen

Re: What to do with .pom files?

2011-12-05 Thread Ben Caradoc-Davies
Please keep discussions on the list. I think it highly unlikely that these are Maven POM files, which are not an eBook format and do not usually exceed a few thousand bytes in size. Maven POM files are called pom.xml and do not end in ".pom". I am not aware of any eBook format with this exten

Re: Maven Native Pluging Problem when building

2011-12-05 Thread Dan Tran
I would strongly suggest that you check out the source code and tinker with integrate test to get it to work with your compiler. ATM, there is no way I can figure out what is wrong with your setup with the provided info. -Dan On Mon, Dec 5, 2011 at 3:27 AM, Satya wrote: > Hi Dan, >    My MSC ve

Re: How to skip tests during release:prepare?

2011-12-05 Thread Cai Wei
Also you can try: mvn -Dmaven.test.skip=true release:prepare 2011/12/6 cemartins > easy - here's the command: > > *mvn -Darguments="-DskipTests=true" release:prepare* > > > -- > View this message in context: > http://maven.40175.n5.nabble.com/How-to-skip-tests-during-release-prepare-tp1223821p5

Default value of an environment variable

2011-12-05 Thread Cezariusz Marek
Hello! I have a multimodule project, which is being build both from the command line (or Eclipse plugin) and by Jenkins server. When building by Jenkins, I use the SVN_REVISION environment variable, to set the name of the final executable (and also the revision number in the About dialog). Whe

problem with dependencies

2011-12-05 Thread DSL
I am having an issue including dependencies in maven 3, below is my example ProjectA ( war ) -ProjectB ( compile dependency ) ProjectB ( jar ) -external jars ( marked as provided dependencies ) I noticed that after i build my war for ProjectA, that the external jars that were marke

Re: spring handlers

2011-12-05 Thread jackett_dad
Ok, Benson, maybe that is the way to go then. I'll have to update after posting another question. Thanks. -- View this message in context: http://maven.40175.n5.nabble.com/spring-handlers-tp5048978p5049717.html Sent from the Maven - Users mailing list archive at Nabble.com. ---

Re: spring handlers

2011-12-05 Thread Benson Margulies
I think that I misunderstood. If you don't control the builds of the jars that have the spring files in them, but merely aggregate them, then I don't have any better suggestion than shade. However, I wonder if we can help you make shade work better for you. ---

Issue with dependencies in maven 3.0

2011-12-05 Thread DSL
I am having an issue including dependencies in maven 3, below is my example ProjectA ( war ) -ProjectB ( compile dependency ) ProjectB ( jar ) -external jars ( marked as provided dependencies ) I noticed that after i build my war for ProjectA, that the external jars that were marked

Re: spring handlers

2011-12-05 Thread jackett_dad
Thanks for the reply. Here's roughly my setup. I have master project with multiple modules. prj - top level - gui - sv1 - sv2 So prj is the parent projectg, gui, sv1 and sv2 are child modules of prj. The gui module has depencencies on sv1 and sv2, and all three modules have spring depe

RE: Maven 2 Archetypes : Folder name with velocity macro using homemade property

2011-12-05 Thread Robert Scholte
I'd expect ${eventName.toLowerCase()} to work, according velocityDocs. The other one sounds like a bug. -Robert > Date: Mon, 5 Dec 2011 16:25:55 +0100 > Subject: Re: Maven 2 Archetypes : Folder name with velocity macro using > homemade property > Fro

Re: Snapshot Deployment Best Practices

2011-12-05 Thread prakyat
Hey, I am a novice in Continuous Integration. Please can you list out a few steps on how I can go about setting up Team City to deploy to Nexus. The system currently uses "archiva" repositories and want to move to Nexus. It would be great if you could tell me how you went about it so I don't mi

Re: How to skip tests during release:prepare?

2011-12-05 Thread cemartins
easy - here's the command: *mvn -Darguments="-DskipTests=true" release:prepare* -- View this message in context: http://maven.40175.n5.nabble.com/How-to-skip-tests-during-release-prepare-tp1223821p5049179.html Sent from the Maven - Users mailing list archive at Nabble.com.

Re: Maven 2 Archetypes : Folder name with velocity macro using homemade property

2011-12-05 Thread Julien PLAQUEVENT
Hi, Does anybody have a clue please ? Best Regards, Julien Plaquevent plaquev...@gmail.com Thales Critical Information Systems 2011/11/30 Julien PLAQUEVENT > Hi, > > I'm currently developping a Maven 2 multimodule archetype (Maven Archetype > Plugin 2.2) under Linux Debian Squeeze. I have two

Re: Maven SCM 1.6 and new integrity provider

2011-12-05 Thread Olivier Lamy
Hello, Component "maven-scm-provider-integrity" added in jira. Feel free to create issues with nice patches :P 2011/12/5 JeremieB. : > Hello, > > Using the brand new SCM 1.6, particularly for the new provider (See > http://jira.codehaus.org/browse/SCM-630 SCM-630 ) "integrity". > > I have some r

Re: spring handlers

2011-12-05 Thread Benson Margulies
You would have configure the maven-jar-plugin to exclude it and then make the combined one show up where you want it. On Mon, Dec 5, 2011 at 9:22 AM, jackett_dad wrote: > All, > > I am having an issue that has been encountered before.  The issue concerns > the inclusion of a file called spring.ha

[CALL FOR TEST] Apache Maven 3.0.4-RC3 staged

2011-12-05 Thread Olivier Lamy
Hello, Apache Maven 3.0.4-RC3 has been staged for testing purpose (this is a preview of the coming 3.0.4 official release) The repository is available here: https://repository.apache.org/content/repositories/maven-292 For convenience, binaries have been copied here: http://people.apache.org/~ola

spring handlers

2011-12-05 Thread jackett_dad
All, I am having an issue that has been encountered before. The issue concerns the inclusion of a file called spring.handlers that exists in multiple spring jars that are included with a project. I'm building a release version of a jar that includes its dependencies, such that there needs to exi

Maven SCM 1.6 and new integrity provider

2011-12-05 Thread JeremieB.
Hello, Using the brand new SCM 1.6, particularly for the new provider (See http://jira.codehaus.org/browse/SCM-630 SCM-630 ) "integrity". I have some remarks/issues : - the documentation of SCM plugin is not up-to-date with this new provider "integrity" (url formats, providers list...) - Jira do

Re: YUI Compressor Maven plugin executed at wrong time and tomcat plugin not using yui-compressor output

2011-12-05 Thread Stephen Connolly
I know nothing about yuicompressor or it's maven plugin Hopefully somebody else can help you make some progress there, glad you have made progresss from where you were! -S On 5 December 2011 12:54, Ken Egervari wrote: > Thanks for the response Stephen! > > I didn't think we could exclude the c

Re: YUI Compressor Maven plugin executed at wrong time and tomcat plugin not using yui-compressor output

2011-12-05 Thread Ken Egervari
Thanks for the response Stephen! I didn't think we could exclude the copying of the actual sources themselves. That makes good sense! I changed it to `scripts/**/*.js,css/**/*.css` instead of what you had, and this finally seems to get the behaviour I want ;) I really had no idea this existed. I w

Re: maven plexus bug

2011-12-05 Thread Olivier Lamy
Hello, I have attached a patch to the issue. Let me know if it helps for your case. 2011/12/5 Sievers, Jan : > Hi, > > a week ago I opened http://jira.codehaus.org/browse/MNG-5206 , no reaction up > to date. > > Even if it's a "won't fix", I would appreciate some feedback on this. > > Best Regard

Re: Maven Native Pluging Problem when building

2011-12-05 Thread Satya
Hi Dan, My MSC version is below *Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 15.00.30729.01 for 80x86* please let me know if you nee anything more. Thanks, Satya -- View this message in context: http://maven.40175.n5.nabble.com/Maven-Native-Pluging-Problem-when-building-tp504240

[ANN] Maven Dependency Plugin 2.4 Released

2011-12-05 Thread Carlos Sanchez
The Maven team is pleased to announce the release of the Maven Dependency Plugin, version 2.4 Provides utility goals to work with dependencies like copying, unpacking, analyzing, resolving and many more. http://maven.apache.org/plugins/maven-dependency-plugin You should specify the version in yo

Re: Maven Native Pluging Problem when building

2011-12-05 Thread Satya
Hi Dan, Thank you very much for reply, I am Using Visual Studio 2008, and I am not using it for build, May be Maven takes it by default. Please let me know if you need anything more on the same, (If that did not give required info, Please tell me any command to know the MSC version) Thanks

Re: Maven+Nexus and OSGi bundles via Fuse ESB

2011-12-05 Thread wulfgar.pro
I got around this today by installing a trial version of Nexus Professional. The professional edition has support for OBR. This way I can create my own hosted OBR, where I can deploy my 3rd party libs as bundles for discovery and resolution via Karaf's `obr` feature. -- View this message in contex

Re: YUI Compressor Maven plugin executed at wrong time and tomcat plugin not using yui-compressor output

2011-12-05 Thread Stephen Connolly
http://maven.apache.org/POM/4.0.0"; xmlns:xsi=" http://www.w3.org/2001/XMLSchema-instance"; xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd";> 4.0.0 localdomain.localhost example war 1.0-SNAPSHOT example

maven plexus bug

2011-12-05 Thread Sievers, Jan
Hi, a week ago I opened http://jira.codehaus.org/browse/MNG-5206 , no reaction up to date. Even if it's a "won't fix", I would appreciate some feedback on this. Best Regards, Jan - To unsubscribe, e-mail: users-unsubscr...@mav

SureFire Report Plugin - Pass / Fail

2011-12-05 Thread muaazster
Guys , I was configuring the sure fire HTML report , and i was only be able to configure ONLY PASS or ONLY FAIL test cases . it didnt come along with the both pass and fail test cases. when i configure as ONLY PASS , in the html report it wont show the status of FAIL test cases , also if i configu