Re: exec:java problem

2009-07-15 Thread ykyuen

it works in windows now.
the problem is previously, i created the maven project directly in eclipse
by the m2eclipse plugin and the project is located in the workspace.

then i try to create the project in the maven repository by the mvn
archetype:create and them import the project to the eclipse. it works fine
now.

but i can only retrieve the weather info once.
http://xml.weather.yahoo.com/ns/rss/1.0 doesn't work now...

anyway, the program works.

thanks very much for your help. =)

Regards,
kit



dchicks wrote:
 
 Did you check to make sure that the class was in the target/classes
 directory?
 
 The UTF-8 encoding is normal on Linux.  That's the default encoding when
 one is not specified.
 
 
 
 ykyuen wrote:
 Hi all,

 i just did the same thing in Linux environemt. the program can be
 executed
 without any problem.
 same warning appear at mvn install but this time the encoding is UTF-8.

 what makes the execution failure in windows env?

 Thanks.

 Regards,
 Kit
   
 
 -
 To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
 For additional commands, e-mail: users-h...@maven.apache.org
 
 
 

-- 
View this message in context: 
http://www.nabble.com/exec%3Ajava-problem-tp24491018p24492726.html
Sent from the Maven - Users mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
For additional commands, e-mail: users-h...@maven.apache.org



Re: Passing Variables at JBoss Startup

2009-07-15 Thread Anders Hammar
Hi,

You're writing remote jboss server; is the jboss instance on a
remote server? If that's the case, cargo cannot start/stop it, that
can only be done on a local instance. (However, your current script
binds to localhost, so maybe your saying 'remote' out of a Maven
instance jvm perspective?)

It's my opinion that cargo is the best choice as it gives you a
unified interface, independent of app server. However, there is also a
JBoss AS specific plugin:
http://mojo.codehaus.org/jboss-maven-plugin/

In the past, I've used a mix of these two plugins to get things
rocking (that was before v1.0 of cargo).

/Anders

On Wed, Jul 15, 2009 at 00:20, daniel.greenoctober...@gmail.com wrote:

 I would like to configure my build scripts to deploy an ear file to a remote
 jboss server. However, as a requirement, I also need the ability to start
 the server, from the script, with parameters.

 Our current Perl and Bash scripts start the server with the following
 arguments:

 code
 --configuration=... -b localhost -Djboss.jndi.conf.root=...
 -Djboss.jndi.conf.specific=...
 /code

 Is it possible to replicate this behavior through maven and
 jboss-maven-plugin? Or am I stuck with Perl and Bash for now?

 --
 View this message in context: 
 http://www.nabble.com/Passing-Variables-at-JBoss-Startup-tp24488807p24488807.html
 Sent from the Maven - Users mailing list archive at Nabble.com.


 -
 To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
 For additional commands, e-mail: users-h...@maven.apache.org



-
To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
For additional commands, e-mail: users-h...@maven.apache.org



Re: maven-eclipse-plugin: how to specify custom compiler settings?

2009-07-15 Thread Barrie Treloar
On Wed, Jul 15, 2009 at 12:17 PM, Dirk Olmesd...@xanthippe.ping.de wrote:
 Hi,

 I'm trying to nail down some compiler settings for a project. Those are
 stored in .settings/org.eclipse.jdt.core.prefs, e.g.

 org.eclipse.jdt.core.compiler.problem.autoboxing=warning

 A quick look in the m-e-p's source makes me think that there is
 currently no easy way to augment the .settings file with custom
 settings. Is there?

There is no way to augment but you can manually make the changes after
the file has been generated.

m-e-p will read in the current preferences and anything that m-e-p
does not modify are preserved.

See EclipseSettingsWriter.java - write() - line 91+

-
To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
For additional commands, e-mail: users-h...@maven.apache.org



Re: site.xml for parent/child site which are siblings

2009-07-15 Thread Dennis Lundberg
http://maven.apache.org/plugins/maven-site-plugin/faq.html#Why_dont_the_links_between_parent_and_child_modules_work_when_I_run_mvn_site

jaybytez wrote:
 I have the following structure for my app:
 avitek
 -avitekApp (EAR)
   - pom.xml
 -avitekParent
   - src/site/site.xml
   - pom.xml
 -avitekWeb (WAR)
   - pom.xml
 
 My parent pom.xml in avitekParent says the following:
 [code]
 modelVersion4.0.0/modelVersion
 groupIdavitek-sample/groupId
 artifactIdparent/artifactId
 packagingpom/packaging
 version1.0-SNAPSHOT/version
 nameMaven 2 Portal Sample/name
 modules
 module../avitekApp/module
 module../avitekWeb/module
 /modules
 [/code]
 
 Then my site.xml for the parent (avitekParent) says this:
 [code]
 menu ref=modules name=Components/
 [/code]
 
 So when I open:
 C:\beaportal\user_projects\workspaces\default\avitek\avitekParent\target\site\index.html
 It gives me links to my child projects (modules), but the urls that get
 generated into the html are like this:
 C:\beaportal\user_projects\workspaces\default\avitek\avitekParent\target\site\avitekWeb\index.html
 And they need to look like:
 C:\beaportal\user_projects\workspaces\default\avitek\avitekWeb\target\site\index.html
 
 Any thoughts or suggestions?
 
 Thanks...jay


-- 
Dennis Lundberg

-
To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
For additional commands, e-mail: users-h...@maven.apache.org



RE: site.xml for parent/child site which are siblings

2009-07-15 Thread Mohan KR
I have been using menu ref, even as recently as two days ago in one of the 
multi-module
project.
Which version of site-plugin are you using? I'm using 2.0-beta-7. Do all the 
sibling modules
have a site descriptor, with menu ref=parent?
The breadcrumbs could be a problem in the default skin. I don't use the default 
skin,
if you know velocity, you can download the default skin and peer into where 
things 
might be going wrong. (BTW, you can change the skin in site.xml)

Thanks,
mohan kr

-Original Message-
From: David C. Hicks [mailto:dhi...@i-hicks.org] 
Sent: Tuesday, July 14, 2009 6:57 PM
To: Maven Users List
Subject: Re: site.xml for parent/child site which are siblings

I would really like to know if you're using the menu ref=parent/ and
if it works??
I've been playing with it for the better part of two days, and I cannot
get the parent link to show up at all.
I've also been playing with breadcrumbs, but they appear to be severely
broken - or, I just don't understand what they're supposed to be used
for.  :-)


jaybytez wrote:
 Looks like it works if use the following at the command line:
 $ mvn site:stage
 -DstagingDirectory=c:/beaportal/user_projects/workspaces/default/avitek/published-site/site

 Is it best to build a site to a staging area and then push that staging area
 to a remote server?

 It appears to correctly have created the site with no modifications to POMs.

 My only outstanding question now is, the menu ref=parent is not working
 for me in the child poms...any reason for this?

 Thanks - jay



 jaybytez wrote:
   
 I have the following structure for my app:
 avitek
 -avitekApp (EAR)
   - pom.xml
 -avitekParent
   - src/site/site.xml
   - pom.xml
 -avitekWeb (WAR)
   - pom.xml

 My parent pom.xml in avitekParent says the following:
 [code]
 modelVersion4.0.0/modelVersion
 groupIdavitek-sample/groupId
 artifactIdparent/artifactId
 packagingpom/packaging
 version1.0-SNAPSHOT/version
 nameMaven 2 Portal Sample/name
 modules
 module../avitekApp/module
 module../avitekWeb/module
 /modules
 [/code]

 Then my site.xml for the parent (avitekParent) says this:
 [code]
 menu ref=modules name=Components/
 [/code]

 So when I open:
 C:\beaportal\user_projects\workspaces\default\avitek\avitekParent\target\site\index.html
 It gives me links to my child projects (modules), but the urls that get
 generated into the html are like this:
 C:\beaportal\user_projects\workspaces\default\avitek\avitekParent\target\site\avitekWeb\index.html
 And they need to look like:
 C:\beaportal\user_projects\workspaces\default\avitek\avitekWeb\target\site\index.html

 Any thoughts or suggestions?

 Thanks...jay

 

   


-
To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
For additional commands, e-mail: users-h...@maven.apache.org



need a new feature in maven profiles

2009-07-15 Thread is_maximum

Hi

When you define a profile and need to exclude some resource files and you
have a multi-module application it is very hard and untidy you define that
profile in each module. 
If we were able to define that profile in parent pom.xml it was really nice
but the problem is currently when you declare a profile and so the
resources you have to specify the directory which is unknwon in parent
pom

if you think this feature is useful the I will create an issue and request
this feature

thanks

-
--
Regards

Mohammad Norouzi

Help each other to reach the future faster

http://pixelshot.wordpress.com Pixelshot Photoblog 

http://brainable.blogspot.com Brainable Blog 


-- 
View this message in context: 
http://www.nabble.com/need-a-new-feature-in-maven-profiles-tp24497174p24497174.html
Sent from the Maven - Users mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
For additional commands, e-mail: users-h...@maven.apache.org



Multi-Project Question

2009-07-15 Thread ChipSchoch

I am new to Maven and am converting a fairly large group of related projects
to Maven2 build.  There are about 15 projects that share the same parent
pom.  In each project pom there is a parent.version tag.  Is there a way to
use a property in this so when I move to another version I only have to
change the project version in one place?

Thanks
-- 
View this message in context: 
http://www.nabble.com/Multi-Project-Question-tp24497550p24497550.html
Sent from the Maven - Users mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
For additional commands, e-mail: users-h...@maven.apache.org



Re: Multi-Project Question

2009-07-15 Thread Gabriel Euzet
Hello,

It does not work like this. You should better use the release plugin
http://maven.apache.org/plugins/maven-release-plugin/ , It changes the
version in all projects tree and much ... ^^

Regards,
Gabriel Euzet

2009/7/15 ChipSchoch csch...@elynx.com


 I am new to Maven and am converting a fairly large group of related
 projects
 to Maven2 build.  There are about 15 projects that share the same parent
 pom.  In each project pom there is a parent.version tag.  Is there a way to
 use a property in this so when I move to another version I only have to
 change the project version in one place?

 Thanks
 --
 View this message in context:
 http://www.nabble.com/Multi-Project-Question-tp24497550p24497550.html
 Sent from the Maven - Users mailing list archive at Nabble.com.


 -
 To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
 For additional commands, e-mail: users-h...@maven.apache.org




[MAVEN - PMD]

2009-07-15 Thread javadevd...@googlemail.com
Hello!

Does anybody know which PMD Version is included in the actual Maven-PMD plugin ?
I cant find it on the website..

thanks...

-
To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
For additional commands, e-mail: users-h...@maven.apache.org



Re: [MAVEN - PMD]

2009-07-15 Thread Arnaud HERITIER
PMD 4.2.2http://maven.apache.org/plugins/maven-pmd-plugin/dependencies.html

Cheers,

Arnaud

# Arnaud Héritier
# Software Factory Manager
# eXo Platform
# http://www.exoplatform.com
# http://blog.aheritier.net


On Wed, Jul 15, 2009 at 3:42 PM, javadevd...@googlemail.com 
javadevd...@googlemail.com wrote:

 Hello!

 Does anybody know which PMD Version is included in the actual Maven-PMD
 plugin ?
 I cant find it on the website..

 thanks...

 -
 To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
 For additional commands, e-mail: users-h...@maven.apache.org




Change maven log settings

2009-07-15 Thread coolAbhijeet

Hello  all

I am facing one problem.
I am using maven for building the project and running Junit test cases, it
also includes hibernate.
In this process hibernate creates lot of INFO log statements, which is
printed on console. I want to skip all the verbose log generated by
hibernate and log only errors.
I have created log4j.properties and is present in the classpath..

log4j.logger=ERROR, CONSOLE
log4j.appender.CONSOLE=org.apache.log4j.ConsoleAppender
log4j.appender.CONSOLE.layout=org.apache.log4j.PatternLayout
log4j.appender.CONSOLE.layout.ConversionPattern=%5p [%t] (%F:%L) - %m%n
log4j.logger.org.hibernate=FATAL

but still there is no change in log printed on console.
How can I solve this issue?

I am new to maven so please help in this problem.

Thanks in Advance 
Abhijeet

-- 
View this message in context: 
http://www.nabble.com/Change-maven-log-settings-tp24498342p24498342.html
Sent from the Maven - Users mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
For additional commands, e-mail: users-h...@maven.apache.org



How to skip verbose log generated by hibernate

2009-07-15 Thread Abhijeet Shipure


Hello  all

I am facing one problem.
I am using maven for building the project and running Junit test cases, 
it also includes hibernate.
In this process hibernate creates lot of INFO log statements, which is 
printed on console. I want to skip all the verbose log generated by 
hibernate and log only errors.
I have created log4j.properties and is present in the classpath..

log4j.logger=ERROR, CONSOLE
log4j.appender.CONSOLE=org.apache.log4j.ConsoleAppender
log4j.appender.CONSOLE.layout=org.apache.log4j.PatternLayout
log4j.appender.CONSOLE.layout.ConversionPattern=%5p [%t] (%F:%L) - %m%n
log4j.logger.org.hibernate=FATAL

but still there is no change in log printed on console.
How can I solve this issue?

I am new to maven so please help in this problem.

Thanks in Advance
Abhijeet


-- 

*Abhijeet Shipure : Cell 9881477527 *
Technical Lead
Vertex Software Pvt. Ltd.
(An NTT DATA Company)
Creating Value
E-mail: aship...@vertex.co.in
Website: www.vertexsoft.com Server Space, 5th  6th Floor,
AG Technology Park, Off ITI Road,
Aundh, Pune - 411 007,
Maharashtra, India
Phone: +91-20-66041500 X 702
Fax: +91-20-66041621.


Disclaimer: http://www.vertexsoft.com/corporate/email_disclaimer.html

Please do not print this email unless it is absolutely necessary.

-
To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
For additional commands, e-mail: users-h...@maven.apache.org



Re: exec:java problem

2009-07-15 Thread Tim O'Brien
On Wed, Jul 15, 2009 at 1:42 AM, ykyuenyingkity...@gmail.com wrote:

 it works in windows now.
 the problem is previously, i created the maven project directly in eclipse
 by the m2eclipse plugin and the project is located in the workspace.

 then i try to create the project in the maven repository by the mvn
 archetype:create and them import the project to the eclipse. it works fine
 now.

 but i can only retrieve the weather info once.
 http://xml.weather.yahoo.com/ns/rss/1.0 doesn't work now...

Alright, time to update this example to use a gov't feed from the US NWS.

Thanks for letting me know.



 anyway, the program works.

 thanks very much for your help. =)

 Regards,
 kit



 dchicks wrote:

 Did you check to make sure that the class was in the target/classes
 directory?

 The UTF-8 encoding is normal on Linux.  That's the default encoding when
 one is not specified.



 ykyuen wrote:
 Hi all,

 i just did the same thing in Linux environemt. the program can be
 executed
 without any problem.
 same warning appear at mvn install but this time the encoding is UTF-8.

 what makes the execution failure in windows env?

 Thanks.

 Regards,
 Kit


 -
 To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
 For additional commands, e-mail: users-h...@maven.apache.org




 --
 View this message in context: 
 http://www.nabble.com/exec%3Ajava-problem-tp24491018p24492726.html
 Sent from the Maven - Users mailing list archive at Nabble.com.


 -
 To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
 For additional commands, e-mail: users-h...@maven.apache.org



-
To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
For additional commands, e-mail: users-h...@maven.apache.org



Re: exec:java problem

2009-07-15 Thread ykyuen


Tim O'Brien wrote:
 
 Alright, time to update this example to use a gov't feed from the US NWS.
 
 Thanks for letting me know.
 

u are welcome~~
that's my pleasure =P

-- 
View this message in context: 
http://www.nabble.com/exec%3Ajava-problem-tp24491018p24499961.html
Sent from the Maven - Users mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
For additional commands, e-mail: users-h...@maven.apache.org



Re: Multiple proxies problem

2009-07-15 Thread Joe Hindsley
You might try adding an id element to each of the settings to make 
them distinct.


From http://maven.apache.org/settings.html#Proxies:

id - The unique identifier for this proxy. This is used to 
differentiate between proxy elements.


Joe Hindsley


Koerner, Ron wrote:

Hi list,

I use several repositories which are both http and https. So I added
this to settings.xml:

proxies
proxy
activetrue/active
protocolhttps/protocol
hostproxy/host
port81/port
/proxy
proxy
activetrue/active
protocolhttp/protocol
hostproxy/host
port81/port
/proxy
/proxies

where proxy is our internal proxy.

No it seems that maven only ever uses the first entry, so in the current
configuration I can download from https-repositories while
http-repositories are contacted directly (which fails due to firewalls).

If I swap the entries I can download from http-repositories but not from
https...

I think (but cannot prove it) that this behaviour is new with maven
2.2.0, while everything was ok with 2.0.8.

Is this a bug or am I doing something wrong?

Thanks,
Ron



-
To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
For additional commands, e-mail: users-h...@maven.apache.org



RE: site.xml for parent/child site which are siblings

2009-07-15 Thread jaybytez

Okay...so I verified that each one of the sub projects has a site.xml with a
menu ref=parent/ and I verified that I am running site-plugin 2.0-beta-7
and my sub projects still don't produce a link based on menu
ref=parent/.

I did not change the skin yet, but that should just be based on the CSS
exposed...otherwise that shouldn't (I am assuming) effect the generated
documentation.

Any other thoughts?

One other question two...if a project is used by multiple projects...does
menu ref=parent/ show a link for all those parent projects?

Thanks...jay


I have been using menu ref, even as recently as two days ago in one of the
multi-module
project.
Which version of site-plugin are you using? I'm using 2.0-beta-7. Do all the
sibling modules
have a site descriptor, with menu ref=parent?
The breadcrumbs could be a problem in the default skin. I don't use the
default skin,
if you know velocity, you can download the default skin and peer into where
things 
might be going wrong. (BTW, you can change the skin in site.xml)

Thanks,
mohan kr
-- 
View this message in context: 
http://www.nabble.com/site.xml-for-parent-child-site-which-are-siblings-tp24489265p24500967.html
Sent from the Maven - Users mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
For additional commands, e-mail: users-h...@maven.apache.org



maven-shade-1.2?

2009-07-15 Thread Martin Gainty

desperately trying to locate maven-shade 1.2
i see maven-shade 1.0?
i also maven-shade 1.2.2-SNAPSHOT?

i'll take the source and build here if someone knows maven-shade-plugin source 
location
thanks
Martin Gainty 
__ 
Jogi és Bizalmassági kinyilatkoztatás/Verzicht und 
Vertraulichkeitanmerkung/Note de déni et de confidentialité
 Ez az
üzenet bizalmas.  Ha nem ön az akinek szánva volt, akkor kérjük, hogy
jelentse azt nekünk vissza. Semmiféle továbbítása vagy másolatának
készítése nem megengedett.  Ez az üzenet csak ismeret cserét szolgál és
semmiféle jogi alkalmazhatósága sincs.  Mivel az electronikus üzenetek
könnyen megváltoztathatóak, ezért minket semmi felelöség nem terhelhet
ezen üzenet tartalma miatt.

Diese Nachricht ist vertraulich. Sollten Sie nicht der vorgesehene Empfaenger 
sein, so bitten wir hoeflich um eine Mitteilung. Jede unbefugte Weiterleitung 
oder Fertigung einer Kopie ist unzulaessig. Diese Nachricht dient lediglich dem 
Austausch von Informationen und entfaltet keine rechtliche Bindungswirkung. 
Aufgrund der leichten Manipulierbarkeit von E-Mails koennen wir keine Haftung 
fuer den Inhalt uebernehmen.
Ce message est confidentiel et peut être privilégié. Si vous n'êtes pas le 
destinataire prévu, nous te demandons avec bonté que pour satisfaire informez 
l'expéditeur. N'importe quelle diffusion non autorisée ou la copie de ceci est 
interdite. Ce message sert à l'information seulement et n'aura pas n'importe 
quel effet légalement obligatoire. Étant donné que les email peuvent facilement 
être sujets à la manipulation, nous ne pouvons accepter aucune responsabilité 
pour le contenu fourni.



_
Windows Live™ SkyDrive™: Get 25 GB of free online storage.
http://windowslive.com/online/skydrive?ocid=TXT_TAGLM_WL_SD_25GB_062009

Re: Exploded WAR in exploded EAR

2009-07-15 Thread george_bancos

I could achieve this by configuring the ear plugin like this:

build
plugins
plugin
groupIdorg.apache.maven.plugins/groupId
artifactIdmaven-ear-plugin/artifactId
configuration
   unpackTypeswar/unpackTypes
   
workDirectoryE:\Programs\JBoss510\server\default\deploy\ejb3Test2.ear/workDirectory
 /configuration
/plugin
/plugins
/build


brianwainwright wrote:
 
 Hi,
 
 I am currently trying to move my teams large
 multi-project/multi-webapp/multi-ear application from Maven 1.x to Maven
 2, and overcome most of the problems I've had on the way, but there's one
 issue I can't work out.
 
 Our current (Maven 1.x) build, we have a customized goal which produces an
 exploded ear which in turn contains an exploded war - (our current
 practise is for developers to deploy fully exploded ears/wars on their own
 JBoss servers while developing.).  We do this by unwaring any bundled
 war dependencies in the exploded ear.
 
 Is there any (simple) way to produce the same kind of fully exploded ear
 in M2?
 
 I've looked at war:exploded, which will build the exploded war, but then
 the ear plugin will look for the .war artifact in the repository when
 trying to bundle it's dependencies, so the exploded war wouldn't be used
 when packaging the ear?
 
 I've also looked at the maven-explosion plugin, which could possibly work
 for us, but it seems inefficient to war/ear the original artifacts and
 then unpack them to explode them when their exploded directories already
 exist.
 
 Thanks for your help,
 
 Brian Wainwright
 Developer
 Burns E-Commerce
 Mansion House, Manchester Road, Altrincham, Cheshire, WA14 4RJ, UK 
 http://www.burnsecs.com
 mailto:brian.wainwri...@burnsecs.com
  
 
 

-- 
View this message in context: 
http://www.nabble.com/Exploded-WAR-in-exploded-EAR-tp3968873p24501387.html
Sent from the Maven - Users mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
For additional commands, e-mail: users-h...@maven.apache.org



Re: maven-shade-1.2?

2009-07-15 Thread Wes Wannemacher
http://maven.apache.org/plugins/maven-shade-plugin/source-repository.html

-Wes

2009/7/15 Martin Gainty mgai...@hotmail.com:

 desperately trying to locate maven-shade 1.2
 i see maven-shade 1.0?
 i also maven-shade 1.2.2-SNAPSHOT?

 i'll take the source and build here if someone knows maven-shade-plugin 
 source location
 thanks
 Martin Gainty
 __
 Jogi és Bizalmassági kinyilatkoztatás/Verzicht und 
 Vertraulichkeitanmerkung/Note de déni et de confidentialité
  Ez az
 üzenet bizalmas.  Ha nem ön az akinek szánva volt, akkor kérjük, hogy
 jelentse azt nekünk vissza. Semmiféle továbbítása vagy másolatának
 készítése nem megengedett.  Ez az üzenet csak ismeret cserét szolgál és
 semmiféle jogi alkalmazhatósága sincs.  Mivel az electronikus üzenetek
 könnyen megváltoztathatóak, ezért minket semmi felelöség nem terhelhet
 ezen üzenet tartalma miatt.

 Diese Nachricht ist vertraulich. Sollten Sie nicht der vorgesehene Empfaenger 
 sein, so bitten wir hoeflich um eine Mitteilung. Jede unbefugte Weiterleitung 
 oder Fertigung einer Kopie ist unzulaessig. Diese Nachricht dient lediglich 
 dem Austausch von Informationen und entfaltet keine rechtliche 
 Bindungswirkung. Aufgrund der leichten Manipulierbarkeit von E-Mails koennen 
 wir keine Haftung fuer den Inhalt uebernehmen.
 Ce message est confidentiel et peut être privilégié. Si vous n'êtes pas le 
 destinataire prévu, nous te demandons avec bonté que pour satisfaire informez 
 l'expéditeur. N'importe quelle diffusion non autorisée ou la copie de ceci 
 est interdite. Ce message sert à l'information seulement et n'aura pas 
 n'importe quel effet légalement obligatoire. Étant donné que les email 
 peuvent facilement être sujets à la manipulation, nous ne pouvons accepter 
 aucune responsabilité pour le contenu fourni.



 _
 Windows Live™ SkyDrive™: Get 25 GB of free online storage.
 http://windowslive.com/online/skydrive?ocid=TXT_TAGLM_WL_SD_25GB_062009



-- 
Wes Wannemacher
Author - Struts 2 In Practice
Includes coverage of Struts 2.1, Spring, JPA, JQuery, Sitemesh and more
http://www.manning.com/wannemacher

-
To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
For additional commands, e-mail: users-h...@maven.apache.org



RE: maven-shade-1.2?

2009-07-15 Thread Martin Gainty

someone from struts put in a hard version tag of 1.2 for building xwork 2.1.2
(instead of the more recent shade-plugin-1.2.1)

plugin
artifactIdmaven-shade-plugin/artifactId
version1.2/version
executions
execution
phasepackage/phase
goals
goalshade/goal
/goals
configuration
shadedArtifactIdxwork/shadedArtifactId
artifactSet
excludes
excludejunit:junit/exclude
excludecommons-logging:commons-logging/exclude
excludeopensymphony:ognl/exclude
excludeorg.springframework:spring-core/exclude
excludeorg.springframework:spring-aop/exclude
excludeorg.springframework:spring-aspects/exclude
excludeorg.springframework:spring-beans/exclude
excludeorg.springframework:spring-context/exclude
excludeorg.springframework:spring-context-support/exclude
excludeorg.springframework:spring-web/exclude
excludeorg.springframework:spring-test/exclude
excludemockobjects:mockobjects-core/exclude
excludeorg.easymock:easymock/exclude
excludeaopalliance:aopalliance/exclude
excludeaspectwerkz:aspectwerkz-core/exclude
excludeaspectj:aspectjrt/exclude
excludeaspectj:aspectjweaver/exclude
excludecglib:cglib/exclude
excludecglib:cglib-nodep/exclude
excludeasm:asm-util/exclude
excludeorg.testng:testng:jdk15/exclude
/excludes
/artifactSet
relocations
relocation
patternorg.objectweb.asm/pattern
shadedPatternorg.objectweb.asm.xwork/shadedPattern
/relocation
/relocations
transformers
transformer/
/transformers
/configuration
/execution
/executions
/plugin

as you can see shade builds the uber-jar so I need shade-plugin to be DOB 
correct
I will change the incorrect shade-plugin version from incorrect 1.2 to correct 
1.2.1

thank you
Martin Gainty 
__ 
Verzicht und Vertraulichkeitanmerkung/Note de déni et de confidentialité
 
Diese Nachricht ist vertraulich. Sollten Sie nicht der vorgesehene Empfaenger 
sein, so bitten wir hoeflich um eine Mitteilung. Jede unbefugte Weiterleitung 
oder Fertigung einer Kopie ist unzulaessig. Diese Nachricht dient lediglich dem 
Austausch von Informationen und entfaltet keine rechtliche Bindungswirkung. 
Aufgrund der leichten Manipulierbarkeit von E-Mails koennen wir keine Haftung 
fuer den Inhalt uebernehmen.
Ce message est confidentiel et peut être privilégié. Si vous n'êtes pas le 
destinataire prévu, nous te demandons avec bonté que pour satisfaire informez 
l'expéditeur. N'importe quelle diffusion non autorisée ou la copie de ceci est 
interdite. Ce message sert à l'information seulement et n'aura pas n'importe 
quel effet légalement obligatoire. Étant donné que les email peuvent facilement 
être sujets à la manipulation, nous ne pouvons accepter aucune responsabilité 
pour le contenu fourni.




 Date: Wed, 15 Jul 2009 12:20:51 -0400
 Subject: Re: maven-shade-1.2?
 From: w...@wantii.com
 To: users@maven.apache.org
 
 http://maven.apache.org/plugins/maven-shade-plugin/source-repository.html
 
 -Wes
 
 2009/7/15 Martin Gainty mgai...@hotmail.com:
 
  desperately trying to locate maven-shade 1.2
  i see maven-shade 1.0?
  i also maven-shade 1.2.2-SNAPSHOT?
 
  i'll take the source and build here if someone knows maven-shade-plugin 
  source location
  thanks
  Martin Gainty
  __
  Jogi és Bizalmassági kinyilatkoztatás/Verzicht und 
  Vertraulichkeitanmerkung/Note de déni et de confidentialité
   Ez az
  üzenet bizalmas.  Ha nem ön az akinek szánva volt, akkor kérjük, hogy
  jelentse azt nekünk vissza. Semmiféle továbbítása vagy másolatának
  készítése nem megengedett.  Ez az üzenet csak ismeret cserét szolgál és
  semmiféle jogi alkalmazhatósága sincs.  Mivel az electronikus üzenetek
  könnyen megváltoztathatóak, ezért minket semmi felelöség nem terhelhet
  ezen üzenet tartalma miatt.
 
  Diese Nachricht ist vertraulich. Sollten Sie nicht der vorgesehene 
  Empfaenger sein, so bitten wir hoeflich um eine Mitteilung. Jede unbefugte 
  Weiterleitung oder Fertigung einer Kopie ist unzulaessig. Diese Nachricht 
  dient lediglich dem Austausch von Informationen und entfaltet keine 
  rechtliche Bindungswirkung. Aufgrund der leichten Manipulierbarkeit von 
  E-Mails koennen wir keine Haftung fuer den Inhalt uebernehmen.
  Ce message est confidentiel et peut être privilégié. Si vous n'êtes pas le 
  destinataire prévu, nous te demandons avec bonté que pour satisfaire 
  informez l'expéditeur. N'importe quelle diffusion non autorisée ou la copie 
  de ceci est interdite. Ce message sert à l'information seulement et n'aura 
  pas n'importe quel effet légalement obligatoire. Étant donné que les email 
  peuvent facilement être sujets à la manipulation, nous ne pouvons accepter 
  aucune responsabilité pour le contenu fourni.
 
 
 
  _
  Windows Live™ SkyDrive™: Get 25 GB of free online storage.
  http://windowslive.com/online/skydrive?ocid=TXT_TAGLM_WL_SD_25GB_062009
 
 
 
 -- 
 Wes Wannemacher
 Author - Struts 2 In Practice
 Includes coverage of Struts 2.1, Spring, JPA, 

RE: site.xml for parent/child site which are siblings

2009-07-15 Thread jaybytez

The schema annotation says the following:

xs:documentation source=descriptionA reference to a pre-defined menu,
such as a codereports/code, codemodules/code or
codeparentProject/code./xs:documentation 

So it says a value of parentProject as opposed to parent.
-- 
View this message in context: 
http://www.nabble.com/site.xml-for-parent-child-site-which-are-siblings-tp24489265p24501723.html
Sent from the Maven - Users mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
For additional commands, e-mail: users-h...@maven.apache.org



Re: running junit test via ant using antrun plugin

2009-07-15 Thread ZJacobson

I didn't see junit 3 in the dependency tree.  I'm just using junit 4.


javabrett wrote:
 
 I've not dealt with this before so take this advice with a grain of 
 salt, but here's something to try: Run mvn dependency:tree to see if 
 another dependency elsewhere is relying on junit 3.x - maybe you can fix 
 or exclude it.
 
 Best
 Brett
 
 ZJacobson wrote:
 Hi-

 I must be doing something really stupid.  I can't get ant to use junit 4
 when invoked via the antrun plugin.  My tests all fail because the test
 runner can't find any tests (since none of the tests extend TestCase). If
 I
 just run the tests via the ant script, the tests run and pass.  But when
 I
 run via maven (which antcall's the same ant script) the test don't run. 
 Is
 there a way to figure out why it seems that ant is only finding junit
 3.x? 
 mvn -X doesn't give me ant -debug.

 This is the configuration of maven-antrun-plugin:
  executions
   execution
 idant-tests/id
 phasetest/phase
 configuration
   tasks
 ant antfile=${basedir}/build.xml
   target name=test/
 /ant
   /tasks
 /configuration
 goals
   goalrun/goal
 /goals
   /execution
   /executions

   dependencies
  dependency
   groupIdant/groupId
   artifactIdant-nodeps/artifactId
   version1.7.0/version
  /dependency
  dependency
   groupIdant/groupId  
   artifactIdant-junit/artifactId  
   version1.6.5/version  
  /dependency  
  dependency  
   groupIdjunit/groupId  
   artifactIdjunit/artifactId  
   version4.4/version
  /dependency
   /dependencies

 Thanks-
 Zak

   
 
 
 -
 To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
 For additional commands, e-mail: users-h...@maven.apache.org
 
 
 

-- 
View this message in context: 
http://www.nabble.com/running-junit-test-via-ant-using-antrun-plugin-tp24382461p24501748.html
Sent from the Maven - Users mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
For additional commands, e-mail: users-h...@maven.apache.org



Re: maven-shade-1.2?

2009-07-15 Thread Wes Wannemacher
2009/7/15 Martin Gainty mgai...@hotmail.com:

 someone from struts put in a hard version tag of 1.2 for building xwork 2.1.2
 (instead of the more recent shade-plugin-1.2.1)


Make sure you file a JIRA with xwork.

-Wes

-- 
Wes Wannemacher
Author - Struts 2 In Practice
Includes coverage of Struts 2.1, Spring, JPA, JQuery, Sitemesh and more
http://www.manning.com/wannemacher

-
To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
For additional commands, e-mail: users-h...@maven.apache.org



Re: site.xml for parent/child site which are siblings

2009-07-15 Thread David C. Hicks
I was using 2.0-beta-7 until yesterday.  I changed to 2.1.

At the time, I only had a single site.xml at the parent level.  It
included the menu ref=parent/ tag.  Assuming that all of the menu
tags are inherited, I would have thought this would work.  I've also
tried it with site.xml in each module with equivalent tags.

My project is set up standard, though.  The parent project contains all
of the modules, physically.


Mohan KR wrote:
 I have been using menu ref, even as recently as two days ago in one of the 
 multi-module
 project.
 Which version of site-plugin are you using? I'm using 2.0-beta-7. Do all the 
 sibling modules
 have a site descriptor, with menu ref=parent?
 The breadcrumbs could be a problem in the default skin. I don't use the 
 default skin,
 if you know velocity, you can download the default skin and peer into where 
 things 
 might be going wrong. (BTW, you can change the skin in site.xml)

 Thanks,
 mohan kr

 -Original Message-
 From: David C. Hicks [mailto:dhi...@i-hicks.org] 
 Sent: Tuesday, July 14, 2009 6:57 PM
 To: Maven Users List
 Subject: Re: site.xml for parent/child site which are siblings

 I would really like to know if you're using the menu ref=parent/ and
 if it works??
 I've been playing with it for the better part of two days, and I cannot
 get the parent link to show up at all.
 I've also been playing with breadcrumbs, but they appear to be severely
 broken - or, I just don't understand what they're supposed to be used
 for.  :-)


   
   

-
To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
For additional commands, e-mail: users-h...@maven.apache.org



Re: site.xml for parent/child site which are siblings

2009-07-15 Thread Benson Margulies
I've filed a JIRA on this and also posted a workaround, you have to
set up the URL for each project yourself. If you can't find my posted
workaround I can post it again.

On Wed, Jul 15, 2009 at 11:58 AM, jaybytezjayby...@gmail.com wrote:

 Okay...so I verified that each one of the sub projects has a site.xml with a
 menu ref=parent/ and I verified that I am running site-plugin 2.0-beta-7
 and my sub projects still don't produce a link based on menu
 ref=parent/.

 I did not change the skin yet, but that should just be based on the CSS
 exposed...otherwise that shouldn't (I am assuming) effect the generated
 documentation.

 Any other thoughts?

 One other question two...if a project is used by multiple projects...does
 menu ref=parent/ show a link for all those parent projects?

 Thanks...jay


 I have been using menu ref, even as recently as two days ago in one of the
 multi-module
 project.
 Which version of site-plugin are you using? I'm using 2.0-beta-7. Do all the
 sibling modules
 have a site descriptor, with menu ref=parent?
 The breadcrumbs could be a problem in the default skin. I don't use the
 default skin,
 if you know velocity, you can download the default skin and peer into where
 things
 might be going wrong. (BTW, you can change the skin in site.xml)

 Thanks,
 mohan kr
 --
 View this message in context: 
 http://www.nabble.com/site.xml-for-parent-child-site-which-are-siblings-tp24489265p24500967.html
 Sent from the Maven - Users mailing list archive at Nabble.com.


 -
 To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
 For additional commands, e-mail: users-h...@maven.apache.org



-
To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
For additional commands, e-mail: users-h...@maven.apache.org



Re: site.xml for parent/child site which are siblings

2009-07-15 Thread jaybytez

Is this the post:
http://n2.nabble.com/Site-generation-tutorials--td327.html#a3239539


Benson Margulies wrote:
 
 I've filed a JIRA on this and also posted a workaround, you have to
 set up the URL for each project yourself. If you can't find my posted
 workaround I can post it again.
 

-- 
View this message in context: 
http://n2.nabble.com/site.xml-for-parent-child-site-which-are-siblings-tp3259842p3265147.html
Sent from the maven users mailing list archive at Nabble.com.

-
To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
For additional commands, e-mail: users-h...@maven.apache.org



Re: site.xml for parent/child site which are siblings

2009-07-15 Thread Benson Margulies
yes

On Wed, Jul 15, 2009 at 2:50 PM, jaybytezjayby...@gmail.com wrote:

 Is this the post:
 http://n2.nabble.com/Site-generation-tutorials--td327.html#a3239539


 Benson Margulies wrote:

 I've filed a JIRA on this and also posted a workaround, you have to
 set up the URL for each project yourself. If you can't find my posted
 workaround I can post it again.


 --
 View this message in context: 
 http://n2.nabble.com/site.xml-for-parent-child-site-which-are-siblings-tp3259842p3265147.html
 Sent from the maven users mailing list archive at Nabble.com.

 -
 To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
 For additional commands, e-mail: users-h...@maven.apache.org



-
To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
For additional commands, e-mail: users-h...@maven.apache.org



Re: site.xml for parent/child site which are siblings

2009-07-15 Thread David C. Hicks
Thanks for the workaround, Benson.  I was able to get it to work in my
little test project.  Now, I'm going after the big project.

Benson Margulies wrote:
 yes

 On Wed, Jul 15, 2009 at 2:50 PM, jaybytezjayby...@gmail.com wrote:
   
 Is this the post:
 http://n2.nabble.com/Site-generation-tutorials--td327.html#a3239539

 
   

-
To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
For additional commands, e-mail: users-h...@maven.apache.org



exclude format for assembly descriptors

2009-07-15 Thread Benson Margulies
This page: 
http://maven.apache.org/plugins/maven-assembly-plugin/examples/single/including-and-excluding-artifacts.html

talks about group:artifact:classifier:version

but all the examples I can find seem to be just filtering filenames.

Are both formats supposed to work?

-
To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
For additional commands, e-mail: users-h...@maven.apache.org



Re: exclude format for assembly descriptors

2009-07-15 Thread David C. Hicks
This is an excerpt from my assembly.xml.  It uses the Maven style
descriptors for inclusion.  Versions are assumed to be those referenced
by the module (or in dependency management).

dependencySets
dependencySet
includes
includecom.allureglobal:salient-war/include
includecom.allureglobal:salient-database-schema/include
includecom.allureglobal:salient-web-services/include
includemysql:mysql-connector-java/include
includeorg.liquibase:liquibase-core/include
/includes
/dependencySet
/dependencySets


Benson Margulies wrote:
 This page: 
 http://maven.apache.org/plugins/maven-assembly-plugin/examples/single/including-and-excluding-artifacts.html

 talks about group:artifact:classifier:version

 but all the examples I can find seem to be just filtering filenames.

 Are both formats supposed to work?

 -
 To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
 For additional commands, e-mail: users-h...@maven.apache.org

   

-
To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
For additional commands, e-mail: users-h...@maven.apache.org



Resource filtering is escaping backslashes.

2009-07-15 Thread David C. Hicks
Hi guys,

One of the fellows working on my project is suddenly having a problem
with one module.  We've narrowed down the problem, but I have no idea
why it's happening.  One of the resources in the test/resources tree
gets filtered with the ${project.build.directory}.  In his case, he gets
a lot of escaped backslashes.  (It's on Windows XP.)  The rest of us are
all on some flavor of Unix.  So, we don't see this.  In this case, the
filtered value comes out as:

C\:\\workspace\\salient\\salient-persistence\\

When our functional tests attempt to use this directory to locate a
file, it fails.  What I can't figure out is why these characters are
being escaped.  This only started recently, but I can't isolate a change
that might have caused it.

Anyone got some wisdom that will help?
Thanks,
Dave


-
To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
For additional commands, e-mail: users-h...@maven.apache.org



Re: site.xml for parent/child site which are siblings

2009-07-15 Thread David C. Hicks
Thanks for the workaround, Benson.  I was able to get it to work in my
little test project.  Now, I'm going after the big project.

Benson Margulies wrote:
 yes

 On Wed, Jul 15, 2009 at 2:50 PM, jaybytezjayby...@gmail.com wrote:
   
 Is this the post:
 http://n2.nabble.com/Site-generation-tutorials--td327.html#a3239539


 
   

-
To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
For additional commands, e-mail: users-h...@maven.apache.org



Re: site.xml for parent/child site which are siblings

2009-07-15 Thread David C. Hicks
Benson Margulies wrote:
 I've filed a JIRA on this and also posted a workaround, you have to
 set up the URL for each project yourself. If you can't find my posted
 workaround I can post it again.
   
Benson, can you give us a JIRA number?  I didn't find anything that
appeared to be the right one *and* had a workaround posted.  I could
have overlooked it, though.
Thanks!


-
To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
For additional commands, e-mail: users-h...@maven.apache.org



Maven is taking 103 minutes for each build in NB 6.7. Why?

2009-07-15 Thread Doug Graham
Twice I've tried to build a small maven persistence app in netbeans 6.7.
Each time maven takes over and starts downloading pom files at a
ridiculously slow rate (i.e. 2k file in 5 minutes).  It takes an hour and 43
minutes to download all the pom files.  I have a fast connection.  If the
other end is cooperating I can download 200 mb in a few minutes.

My question is why does maven need to re-download all these pom files each
time I rebuild?

What do I have set wrong?

Thank you, Doug


Re: site.xml for parent/child site which are siblings

2009-07-15 Thread Benson Margulies
I never attached the workaround to the JIRA. It is MSITE-409. I'm
trying to get organized to try to fix it. However, the whole idea of a
'parent' link needs thought.

On Wed, Jul 15, 2009 at 2:54 PM, David C. Hicksdhi...@i-hicks.org wrote:
 Benson Margulies wrote:
 I've filed a JIRA on this and also posted a workaround, you have to
 set up the URL for each project yourself. If you can't find my posted
 workaround I can post it again.

 Benson, can you give us a JIRA number?  I didn't find anything that
 appeared to be the right one *and* had a workaround posted.  I could
 have overlooked it, though.
 Thanks!


 -
 To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
 For additional commands, e-mail: users-h...@maven.apache.org



-
To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
For additional commands, e-mail: users-h...@maven.apache.org



Re: exclude format for assembly descriptors

2009-07-15 Thread Benson Margulies
Mine now looks like the following, and the last three excludes are
ineffectual in excluding.

dependencySets
dependencySet
  outputDirectorylib/outputDirectory
  unpackfalse/unpack
  scopecompile/scope
  excludes
excludeorg.springframework:*/exclude
excludecom.basistech.rlpj:rlp-bl-lucene2.4/exclude
excludecom.basistech.rlpj:rlp-common/exclude
excludecom.basistech.rlpj:dictionaries/exclude
  /excludes
/dependencySet
  /dependencySets



On Wed, Jul 15, 2009 at 4:14 PM, David C. Hicksdhi...@i-hicks.org wrote:
 This is an excerpt from my assembly.xml.  It uses the Maven style
 descriptors for inclusion.  Versions are assumed to be those referenced
 by the module (or in dependency management).

    dependencySets
        dependencySet
            includes
                includecom.allureglobal:salient-war/include
                includecom.allureglobal:salient-database-schema/include
                includecom.allureglobal:salient-web-services/include
                includemysql:mysql-connector-java/include
                includeorg.liquibase:liquibase-core/include
            /includes
        /dependencySet
    /dependencySets


 Benson Margulies wrote:
 This page: 
 http://maven.apache.org/plugins/maven-assembly-plugin/examples/single/including-and-excluding-artifacts.html

 talks about group:artifact:classifier:version

 but all the examples I can find seem to be just filtering filenames.

 Are both formats supposed to work?

 -
 To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
 For additional commands, e-mail: users-h...@maven.apache.org



 -
 To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
 For additional commands, e-mail: users-h...@maven.apache.org



-
To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
For additional commands, e-mail: users-h...@maven.apache.org



hudson + build-number-plugin can't find svn

2009-07-15 Thread Lachlan Deck

Hi there,

We've set up hudson on our build server but are invariably finding  
that it fails to find the svn executable when building (see below  
stack trace).


We've defined in hudson the environment variable 'svn' as /usr/local/ 
bin/svn. However this doesn't seem to be working (or not always).


Does anyone know of a surefire way of setting this up so that svn is  
found on the path?

Thanks.


[INFO] Cannot get the revision information from the scm repository :
Exception while executing SCM command.

java.io.IOException: error=2, No such file or directory
[INFO]  


[INFO] Trace
org.apache.maven.lifecycle.LifecycleExecutionException: Cannot get the  
revision information from the scm repository :

Exception while executing SCM command.
	at  
org 
.apache 
.maven 
.lifecycle 
.DefaultLifecycleExecutor.executeGoals(DefaultLifecycleExecutor.java: 
703)
	at  
org 
.apache 
.maven 
.lifecycle 
.DefaultLifecycleExecutor 
.executeGoalWithLifecycle(DefaultLifecycleExecutor.java:540)
	at  
org 
.apache 
.maven 
.lifecycle 
.DefaultLifecycleExecutor.executeGoal(DefaultLifecycleExecutor.java:519)
	at  
org 
.apache 
.maven 
.lifecycle 
.DefaultLifecycleExecutor 
.executeGoalAndHandleFailures(DefaultLifecycleExecutor.java:371)
	at  
org 
.apache 
.maven 
.lifecycle 
.DefaultLifecycleExecutor 
.executeTaskSegments(DefaultLifecycleExecutor.java:332)
	at  
org 
.apache 
.maven 
.lifecycle 
.DefaultLifecycleExecutor.execute(DefaultLifecycleExecutor.java:181)
	at  
org 
.apache 
.maven 
.lifecycle 
.LifecycleExecutorInterceptor 
.execute(LifecycleExecutorInterceptor.java:65)

at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:356)
at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:137)
at org.apache.maven.cli.MavenCli.main(MavenCli.java:356)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
	at  
sun 
.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java: 
39)
	at  
sun 
.reflect 
.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java: 
25)

at java.lang.reflect.Method.invoke(Method.java:597)
at org.codehaus.classworlds.Launcher.launchEnhanced(Launcher.java:315)
at org.codehaus.classworlds.Launcher.launch(Launcher.java:255)
at hudson.maven.agent.Main.launch(Main.java:165)
at hudson.maven.MavenBuilder.call(MavenBuilder.java:159)
	at hudson.maven.MavenModuleSetBuild 
$Builder.call(MavenModuleSetBuild.java:601)
	at hudson.maven.MavenModuleSetBuild 
$Builder.call(MavenModuleSetBuild.java:547)

at hudson.remoting.UserRequest.perform(UserRequest.java:103)
at hudson.remoting.UserRequest.perform(UserRequest.java:47)
at hudson.remoting.Request$2.run(Request.java:236)
	at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java: 
441)

at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303)
at java.util.concurrent.FutureTask.run(FutureTask.java:138)
	at java.util.concurrent.ThreadPoolExecutor 
$Worker.runTask(ThreadPoolExecutor.java:885)
	at java.util.concurrent.ThreadPoolExecutor 
$Worker.run(ThreadPoolExecutor.java:907)

at java.lang.Thread.run(Thread.java:619)
Caused by: org.apache.maven.plugin.MojoExecutionException: Cannot get  
the revision information from the scm repository :

Exception while executing SCM command.
at org.codehaus.mojo.build.BuildMojo.getRevision(BuildMojo.java:502)
at org.codehaus.mojo.build.BuildMojo.execute(BuildMojo.java:377)
	at  
org 
.apache 
.maven 
.plugin.DefaultPluginManager.executeMojo(DefaultPluginManager.java:483)
	at  
hudson 
.maven 
.agent 
.PluginManagerInterceptor.executeMojo(PluginManagerInterceptor.java:182)
	at  
org 
.apache 
.maven 
.lifecycle 
.DefaultLifecycleExecutor.executeGoals(DefaultLifecycleExecutor.java: 
678)

... 28 more
Caused by: org.apache.maven.scm.ScmException: Exception while  
executing SCM command.
	at  
org 
.apache.maven.scm.command.AbstractCommand.execute(AbstractCommand.java: 
59)

at org.codehaus.mojo.build.BuildMojo.info(BuildMojo.java:526)
at org.codehaus.mojo.build.BuildMojo.getRevision(BuildMojo.java:494)
... 32 more
Caused by: org.apache.maven.scm.ScmException: Error while executing  
command.
	at  
org 
.codehaus 
.mojo.build.SvnInfoCommand.executeInfoCommand(SvnInfoCommand.java:102)
	at  
org 
.codehaus.mojo.build.SvnInfoCommand.executeCommand(SvnInfoCommand.java: 
151)
	at  
org 
.apache.maven.scm.command.AbstractCommand.execute(AbstractCommand.java: 
55)

... 34 more
Caused by: org.codehaus.plexus.util.cli.CommandLineException: Error  
while executing process.
	at org.codehaus.plexus.util.cli.Commandline.execute(Commandline.java: 
697)
	at  
org 
.codehaus 
.mojo.build.SvnInfoCommand.executeInfoCommand(SvnInfoCommand.java:80)

... 36 more
Caused by: java.io.IOException: Cannot run program svn (in directory 

lifecycle, shade, assembly

2009-07-15 Thread Benson Margulies
I have a package in which I want to include a shaded jar in an
assembly. What phases would folks recommend for shade and assembly?

-
To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
For additional commands, e-mail: users-h...@maven.apache.org



RE: hudson + build-number-plugin can't find svn

2009-07-15 Thread Mohan KR
I don't have access to the project right now. I remember it is the
incompatibility with the
svn versions.

IIRC Hudson built-in (svn kit) uses 1.5, so when it checks out the sources
the metadata is
1.5 compatible. So if your /usr/local/svn is 1.4 then you will get the
error. 


Thanks,
mohan kr

-Original Message-
From: Lachlan Deck [mailto:lachlan.d...@gmail.com] 
Sent: Wednesday, July 15, 2009 8:02 PM
To: Maven Users List
Subject: hudson + build-number-plugin can't find svn

Hi there,

We've set up hudson on our build server but are invariably finding  
that it fails to find the svn executable when building (see below  
stack trace).

We've defined in hudson the environment variable 'svn' as /usr/local/ 
bin/svn. However this doesn't seem to be working (or not always).

Does anyone know of a surefire way of setting this up so that svn is  
found on the path?
Thanks.


[INFO] Cannot get the revision information from the scm repository :
Exception while executing SCM command.

java.io.IOException: error=2, No such file or directory
[INFO]  

[INFO] Trace
org.apache.maven.lifecycle.LifecycleExecutionException: Cannot get the  
revision information from the scm repository :
Exception while executing SCM command.
at  
org 
.apache 
.maven 
.lifecycle 
.DefaultLifecycleExecutor.executeGoals(DefaultLifecycleExecutor.java: 
703)
at  
org 
.apache 
.maven 
.lifecycle 
.DefaultLifecycleExecutor 
.executeGoalWithLifecycle(DefaultLifecycleExecutor.java:540)
at  
org 
.apache 
.maven 
.lifecycle 
.DefaultLifecycleExecutor.executeGoal(DefaultLifecycleExecutor.java:519)
at  
org 
.apache 
.maven 
.lifecycle 
.DefaultLifecycleExecutor 
.executeGoalAndHandleFailures(DefaultLifecycleExecutor.java:371)
at  
org 
.apache 
.maven 
.lifecycle 
.DefaultLifecycleExecutor 
.executeTaskSegments(DefaultLifecycleExecutor.java:332)
at  
org 
.apache 
.maven 
.lifecycle 
.DefaultLifecycleExecutor.execute(DefaultLifecycleExecutor.java:181)
at  
org 
.apache 
.maven 
.lifecycle 
.LifecycleExecutorInterceptor 
.execute(LifecycleExecutorInterceptor.java:65)
at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:356)
at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:137)
at org.apache.maven.cli.MavenCli.main(MavenCli.java:356)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at  
sun 
.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java: 
39)
at  
sun 
.reflect 
.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java: 
25)
at java.lang.reflect.Method.invoke(Method.java:597)
at
org.codehaus.classworlds.Launcher.launchEnhanced(Launcher.java:315)
at org.codehaus.classworlds.Launcher.launch(Launcher.java:255)
at hudson.maven.agent.Main.launch(Main.java:165)
at hudson.maven.MavenBuilder.call(MavenBuilder.java:159)
at hudson.maven.MavenModuleSetBuild 
$Builder.call(MavenModuleSetBuild.java:601)
at hudson.maven.MavenModuleSetBuild 
$Builder.call(MavenModuleSetBuild.java:547)
at hudson.remoting.UserRequest.perform(UserRequest.java:103)
at hudson.remoting.UserRequest.perform(UserRequest.java:47)
at hudson.remoting.Request$2.run(Request.java:236)
at
java.util.concurrent.Executors$RunnableAdapter.call(Executors.java: 
441)
at
java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303)
at java.util.concurrent.FutureTask.run(FutureTask.java:138)
at java.util.concurrent.ThreadPoolExecutor 
$Worker.runTask(ThreadPoolExecutor.java:885)
at java.util.concurrent.ThreadPoolExecutor 
$Worker.run(ThreadPoolExecutor.java:907)
at java.lang.Thread.run(Thread.java:619)
Caused by: org.apache.maven.plugin.MojoExecutionException: Cannot get  
the revision information from the scm repository :
Exception while executing SCM command.
at org.codehaus.mojo.build.BuildMojo.getRevision(BuildMojo.java:502)
at org.codehaus.mojo.build.BuildMojo.execute(BuildMojo.java:377)
at  
org 
.apache 
.maven 
.plugin.DefaultPluginManager.executeMojo(DefaultPluginManager.java:483)
at  
hudson 
.maven 
.agent 
.PluginManagerInterceptor.executeMojo(PluginManagerInterceptor.java:182)
at  
org 
.apache 
.maven 
.lifecycle 
.DefaultLifecycleExecutor.executeGoals(DefaultLifecycleExecutor.java: 
678)
... 28 more
Caused by: org.apache.maven.scm.ScmException: Exception while  
executing SCM command.
at  
org 
.apache.maven.scm.command.AbstractCommand.execute(AbstractCommand.java: 
59)
at org.codehaus.mojo.build.BuildMojo.info(BuildMojo.java:526)
at org.codehaus.mojo.build.BuildMojo.getRevision(BuildMojo.java:494)
... 32 more
Caused by: org.apache.maven.scm.ScmException: Error while executing  
command.
at  
org 
.codehaus 

Re: hudson + build-number-plugin can't find svn

2009-07-15 Thread Lachlan Deck

On 16/07/2009, at 12:21 PM, Mohan KR wrote:


I don't have access to the project right now. I remember it is the
incompatibility with the
svn versions.

IIRC Hudson built-in (svn kit) uses 1.5, so when it checks out the  
sources

the metadata is
1.5 compatible. So if your /usr/local/svn is 1.4 then you will get the
error.


Interesting. Makes sense.

Our /usr/local/bin/svn is 1.6.3 though.

Any suggestions on what to do?
Thanks


Thanks,
mohan kr

-Original Message-
From: Lachlan Deck [mailto:lachlan.d...@gmail.com]
Sent: Wednesday, July 15, 2009 8:02 PM
To: Maven Users List
Subject: hudson + build-number-plugin can't find svn

Hi there,

We've set up hudson on our build server but are invariably finding
that it fails to find the svn executable when building (see below
stack trace).

We've defined in hudson the environment variable 'svn' as /usr/local/
bin/svn. However this doesn't seem to be working (or not always).

Does anyone know of a surefire way of setting this up so that svn is
found on the path?
Thanks.


[INFO] Cannot get the revision information from the scm repository :
Exception while executing SCM command.

java.io.IOException: error=2, No such file or directory
[INFO]

[INFO] Trace
org.apache.maven.lifecycle.LifecycleExecutionException: Cannot get the
revision information from the scm repository :
Exception while executing SCM command.
at
org
.apache
.maven
.lifecycle
.DefaultLifecycleExecutor.executeGoals(DefaultLifecycleExecutor.java:
703)
at
org
.apache
.maven
.lifecycle
.DefaultLifecycleExecutor
.executeGoalWithLifecycle(DefaultLifecycleExecutor.java:540)
at
org
.apache
.maven
.lifecycle
.DefaultLifecycleExecutor.executeGoal(DefaultLifecycleExecutor.java: 
519)

at
org
.apache
.maven
.lifecycle
.DefaultLifecycleExecutor
.executeGoalAndHandleFailures(DefaultLifecycleExecutor.java:371)
at
org
.apache
.maven
.lifecycle
.DefaultLifecycleExecutor
.executeTaskSegments(DefaultLifecycleExecutor.java:332)
at
org
.apache
.maven
.lifecycle
.DefaultLifecycleExecutor.execute(DefaultLifecycleExecutor.java:181)
at
org
.apache
.maven
.lifecycle
.LifecycleExecutorInterceptor
.execute(LifecycleExecutorInterceptor.java:65)
at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:356)
at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:137)
at org.apache.maven.cli.MavenCli.main(MavenCli.java:356)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at
sun
.reflect 
.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:

39)
at
sun
.reflect
.DelegatingMethodAccessorImpl 
.invoke(DelegatingMethodAccessorImpl.java:

25)
at java.lang.reflect.Method.invoke(Method.java:597)
at
org.codehaus.classworlds.Launcher.launchEnhanced(Launcher.java:315)
at org.codehaus.classworlds.Launcher.launch(Launcher.java:255)
at hudson.maven.agent.Main.launch(Main.java:165)
at hudson.maven.MavenBuilder.call(MavenBuilder.java:159)
at hudson.maven.MavenModuleSetBuild
$Builder.call(MavenModuleSetBuild.java:601)
at hudson.maven.MavenModuleSetBuild
$Builder.call(MavenModuleSetBuild.java:547)
at hudson.remoting.UserRequest.perform(UserRequest.java:103)
at hudson.remoting.UserRequest.perform(UserRequest.java:47)
at hudson.remoting.Request$2.run(Request.java:236)
at
java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:
441)
at
java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303)
at java.util.concurrent.FutureTask.run(FutureTask.java:138)
at java.util.concurrent.ThreadPoolExecutor
$Worker.runTask(ThreadPoolExecutor.java:885)
at java.util.concurrent.ThreadPoolExecutor
$Worker.run(ThreadPoolExecutor.java:907)
at java.lang.Thread.run(Thread.java:619)
Caused by: org.apache.maven.plugin.MojoExecutionException: Cannot get
the revision information from the scm repository :
Exception while executing SCM command.
at org.codehaus.mojo.build.BuildMojo.getRevision(BuildMojo.java:502)
at org.codehaus.mojo.build.BuildMojo.execute(BuildMojo.java:377)
at
org
.apache
.maven
.plugin.DefaultPluginManager.executeMojo(DefaultPluginManager.java: 
483)

at
hudson
.maven
.agent
.PluginManagerInterceptor.executeMojo(PluginManagerInterceptor.java: 
182)

at
org
.apache
.maven
.lifecycle
.DefaultLifecycleExecutor.executeGoals(DefaultLifecycleExecutor.java:
678)
... 28 more
Caused by: org.apache.maven.scm.ScmException: Exception while
executing SCM command.
at
org
.apache 
.maven.scm.command.AbstractCommand.execute(AbstractCommand.java:

59)
at org.codehaus.mojo.build.BuildMojo.info(BuildMojo.java:526)
at org.codehaus.mojo.build.BuildMojo.getRevision(BuildMojo.java:494)
... 32 more
Caused by: 

RE: hudson + build-number-plugin can't find svn

2009-07-15 Thread Mohan KR
you need to downgrade to 1.5.x to match hudsons version.
I just installed 1.5.x client on the Hudson box...you basically have to
match the Hudson internal svn version.

Thanks,
mohan kr


-Original Message-
From: Lachlan Deck [mailto:lachlan.d...@gmail.com] 
Sent: Wednesday, July 15, 2009 9:54 PM
To: Maven Users List
Subject: Re: hudson + build-number-plugin can't find svn

On 16/07/2009, at 12:21 PM, Mohan KR wrote:

 I don't have access to the project right now. I remember it is the
 incompatibility with the
 svn versions.

 IIRC Hudson built-in (svn kit) uses 1.5, so when it checks out the  
 sources
 the metadata is
 1.5 compatible. So if your /usr/local/svn is 1.4 then you will get the
 error.

Interesting. Makes sense.

Our /usr/local/bin/svn is 1.6.3 though.

Any suggestions on what to do?
Thanks

 Thanks,
 mohan kr

 -Original Message-
 From: Lachlan Deck [mailto:lachlan.d...@gmail.com]
 Sent: Wednesday, July 15, 2009 8:02 PM
 To: Maven Users List
 Subject: hudson + build-number-plugin can't find svn

 Hi there,

 We've set up hudson on our build server but are invariably finding
 that it fails to find the svn executable when building (see below
 stack trace).

 We've defined in hudson the environment variable 'svn' as /usr/local/
 bin/svn. However this doesn't seem to be working (or not always).

 Does anyone know of a surefire way of setting this up so that svn is
 found on the path?
 Thanks.


 [INFO] Cannot get the revision information from the scm repository :
 Exception while executing SCM command.

 java.io.IOException: error=2, No such file or directory
 [INFO]
 
 [INFO] Trace
 org.apache.maven.lifecycle.LifecycleExecutionException: Cannot get the
 revision information from the scm repository :
 Exception while executing SCM command.
   at
 org
 .apache
 .maven
 .lifecycle
 .DefaultLifecycleExecutor.executeGoals(DefaultLifecycleExecutor.java:
 703)
   at
 org
 .apache
 .maven
 .lifecycle
 .DefaultLifecycleExecutor
 .executeGoalWithLifecycle(DefaultLifecycleExecutor.java:540)
   at
 org
 .apache
 .maven
 .lifecycle
 .DefaultLifecycleExecutor.executeGoal(DefaultLifecycleExecutor.java: 
 519)
   at
 org
 .apache
 .maven
 .lifecycle
 .DefaultLifecycleExecutor
 .executeGoalAndHandleFailures(DefaultLifecycleExecutor.java:371)
   at
 org
 .apache
 .maven
 .lifecycle
 .DefaultLifecycleExecutor
 .executeTaskSegments(DefaultLifecycleExecutor.java:332)
   at
 org
 .apache
 .maven
 .lifecycle
 .DefaultLifecycleExecutor.execute(DefaultLifecycleExecutor.java:181)
   at
 org
 .apache
 .maven
 .lifecycle
 .LifecycleExecutorInterceptor
 .execute(LifecycleExecutorInterceptor.java:65)
   at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:356)
   at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:137)
   at org.apache.maven.cli.MavenCli.main(MavenCli.java:356)
   at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
   at
 sun
 .reflect 
 .NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:
 39)
   at
 sun
 .reflect
 .DelegatingMethodAccessorImpl 
 .invoke(DelegatingMethodAccessorImpl.java:
 25)
   at java.lang.reflect.Method.invoke(Method.java:597)
   at
 org.codehaus.classworlds.Launcher.launchEnhanced(Launcher.java:315)
   at org.codehaus.classworlds.Launcher.launch(Launcher.java:255)
   at hudson.maven.agent.Main.launch(Main.java:165)
   at hudson.maven.MavenBuilder.call(MavenBuilder.java:159)
   at hudson.maven.MavenModuleSetBuild
 $Builder.call(MavenModuleSetBuild.java:601)
   at hudson.maven.MavenModuleSetBuild
 $Builder.call(MavenModuleSetBuild.java:547)
   at hudson.remoting.UserRequest.perform(UserRequest.java:103)
   at hudson.remoting.UserRequest.perform(UserRequest.java:47)
   at hudson.remoting.Request$2.run(Request.java:236)
   at
 java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:
 441)
   at
 java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303)
   at java.util.concurrent.FutureTask.run(FutureTask.java:138)
   at java.util.concurrent.ThreadPoolExecutor
 $Worker.runTask(ThreadPoolExecutor.java:885)
   at java.util.concurrent.ThreadPoolExecutor
 $Worker.run(ThreadPoolExecutor.java:907)
   at java.lang.Thread.run(Thread.java:619)
 Caused by: org.apache.maven.plugin.MojoExecutionException: Cannot get
 the revision information from the scm repository :
 Exception while executing SCM command.
   at org.codehaus.mojo.build.BuildMojo.getRevision(BuildMojo.java:502)
   at org.codehaus.mojo.build.BuildMojo.execute(BuildMojo.java:377)
   at
 org
 .apache
 .maven
 .plugin.DefaultPluginManager.executeMojo(DefaultPluginManager.java: 
 483)
   at
 hudson
 .maven
 .agent
 .PluginManagerInterceptor.executeMojo(PluginManagerInterceptor.java: 
 182)
   at
 org
 .apache
 .maven
 .lifecycle
 

Re: hudson + build-number-plugin can't find svn

2009-07-15 Thread Lachlan Deck

On 16/07/2009, at 12:21 PM, Mohan KR wrote:


I don't have access to the project right now. I remember it is the
incompatibility with the
svn versions.

IIRC Hudson built-in (svn kit) uses 1.5, so when it checks out the  
sources

the metadata is
1.5 compatible.


Actually we just checked and it's using svnkit-1.3-hudson. SVNKit1.3  
is compatible with svn 1.6 AFAIK.



So if your /usr/local/svn is 1.4 then you will get the
error.


Again our /usr/local/bin/svn is 1.6.3

So any other suggestions? Perhaps it's really not finding it on the  
path? Can it be configured?



Thanks,
mohan kr

-Original Message-
From: Lachlan Deck [mailto:lachlan.d...@gmail.com]
Sent: Wednesday, July 15, 2009 8:02 PM
To: Maven Users List
Subject: hudson + build-number-plugin can't find svn

Hi there,

We've set up hudson on our build server but are invariably finding
that it fails to find the svn executable when building (see below
stack trace).

We've defined in hudson the environment variable 'svn' as /usr/local/
bin/svn. However this doesn't seem to be working (or not always).

Does anyone know of a surefire way of setting this up so that svn is
found on the path?
Thanks.


[INFO] Cannot get the revision information from the scm repository :
Exception while executing SCM command.

java.io.IOException: error=2, No such file or directory
[INFO]

[INFO] Trace
org.apache.maven.lifecycle.LifecycleExecutionException: Cannot get the
revision information from the scm repository :
Exception while executing SCM command.
at
org
.apache
.maven
.lifecycle
.DefaultLifecycleExecutor.executeGoals(DefaultLifecycleExecutor.java:
703)
at
org
.apache
.maven
.lifecycle
.DefaultLifecycleExecutor
.executeGoalWithLifecycle(DefaultLifecycleExecutor.java:540)
at
org
.apache
.maven
.lifecycle
.DefaultLifecycleExecutor.executeGoal(DefaultLifecycleExecutor.java: 
519)

at
org
.apache
.maven
.lifecycle
.DefaultLifecycleExecutor
.executeGoalAndHandleFailures(DefaultLifecycleExecutor.java:371)
at
org
.apache
.maven
.lifecycle
.DefaultLifecycleExecutor
.executeTaskSegments(DefaultLifecycleExecutor.java:332)
at
org
.apache
.maven
.lifecycle
.DefaultLifecycleExecutor.execute(DefaultLifecycleExecutor.java:181)
at
org
.apache
.maven
.lifecycle
.LifecycleExecutorInterceptor
.execute(LifecycleExecutorInterceptor.java:65)
at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:356)
at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:137)
at org.apache.maven.cli.MavenCli.main(MavenCli.java:356)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at
sun
.reflect 
.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:

39)
at
sun
.reflect
.DelegatingMethodAccessorImpl 
.invoke(DelegatingMethodAccessorImpl.java:

25)
at java.lang.reflect.Method.invoke(Method.java:597)
at
org.codehaus.classworlds.Launcher.launchEnhanced(Launcher.java:315)
at org.codehaus.classworlds.Launcher.launch(Launcher.java:255)
at hudson.maven.agent.Main.launch(Main.java:165)
at hudson.maven.MavenBuilder.call(MavenBuilder.java:159)
at hudson.maven.MavenModuleSetBuild
$Builder.call(MavenModuleSetBuild.java:601)
at hudson.maven.MavenModuleSetBuild
$Builder.call(MavenModuleSetBuild.java:547)
at hudson.remoting.UserRequest.perform(UserRequest.java:103)
at hudson.remoting.UserRequest.perform(UserRequest.java:47)
at hudson.remoting.Request$2.run(Request.java:236)
at
java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:
441)
at
java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303)
at java.util.concurrent.FutureTask.run(FutureTask.java:138)
at java.util.concurrent.ThreadPoolExecutor
$Worker.runTask(ThreadPoolExecutor.java:885)
at java.util.concurrent.ThreadPoolExecutor
$Worker.run(ThreadPoolExecutor.java:907)
at java.lang.Thread.run(Thread.java:619)
Caused by: org.apache.maven.plugin.MojoExecutionException: Cannot get
the revision information from the scm repository :
Exception while executing SCM command.
at org.codehaus.mojo.build.BuildMojo.getRevision(BuildMojo.java:502)
at org.codehaus.mojo.build.BuildMojo.execute(BuildMojo.java:377)
at
org
.apache
.maven
.plugin.DefaultPluginManager.executeMojo(DefaultPluginManager.java: 
483)

at
hudson
.maven
.agent
.PluginManagerInterceptor.executeMojo(PluginManagerInterceptor.java: 
182)

at
org
.apache
.maven
.lifecycle
.DefaultLifecycleExecutor.executeGoals(DefaultLifecycleExecutor.java:
678)
... 28 more
Caused by: org.apache.maven.scm.ScmException: Exception while
executing SCM command.
at
org
.apache 
.maven.scm.command.AbstractCommand.execute(AbstractCommand.java:

59)
at org.codehaus.mojo.build.BuildMojo.info(BuildMojo.java:526)

RE: hudson + build-number-plugin can't find svn

2009-07-15 Thread Mohan KR
Sorry, I'm looking at the stack trace, it appears the svn executable is not
found.
How are you launching Hudson? Make sure the startup script that launches
Hudson
has /usr/local/bin in its PATH.

Thanks,
mohan kr


-Original Message-
From: Lachlan Deck [mailto:lachlan.d...@gmail.com] 
Sent: Wednesday, July 15, 2009 9:54 PM
To: Maven Users List
Subject: Re: hudson + build-number-plugin can't find svn

On 16/07/2009, at 12:21 PM, Mohan KR wrote:

 I don't have access to the project right now. I remember it is the
 incompatibility with the
 svn versions.

 IIRC Hudson built-in (svn kit) uses 1.5, so when it checks out the  
 sources
 the metadata is
 1.5 compatible. So if your /usr/local/svn is 1.4 then you will get the
 error.

Interesting. Makes sense.

Our /usr/local/bin/svn is 1.6.3 though.

Any suggestions on what to do?
Thanks

 Thanks,
 mohan kr

 -Original Message-
 From: Lachlan Deck [mailto:lachlan.d...@gmail.com]
 Sent: Wednesday, July 15, 2009 8:02 PM
 To: Maven Users List
 Subject: hudson + build-number-plugin can't find svn

 Hi there,

 We've set up hudson on our build server but are invariably finding
 that it fails to find the svn executable when building (see below
 stack trace).

 We've defined in hudson the environment variable 'svn' as /usr/local/
 bin/svn. However this doesn't seem to be working (or not always).

 Does anyone know of a surefire way of setting this up so that svn is
 found on the path?
 Thanks.


 [INFO] Cannot get the revision information from the scm repository :
 Exception while executing SCM command.

 java.io.IOException: error=2, No such file or directory
 [INFO]
 
 [INFO] Trace
 org.apache.maven.lifecycle.LifecycleExecutionException: Cannot get the
 revision information from the scm repository :
 Exception while executing SCM command.
   at
 org
 .apache
 .maven
 .lifecycle
 .DefaultLifecycleExecutor.executeGoals(DefaultLifecycleExecutor.java:
 703)
   at
 org
 .apache
 .maven
 .lifecycle
 .DefaultLifecycleExecutor
 .executeGoalWithLifecycle(DefaultLifecycleExecutor.java:540)
   at
 org
 .apache
 .maven
 .lifecycle
 .DefaultLifecycleExecutor.executeGoal(DefaultLifecycleExecutor.java: 
 519)
   at
 org
 .apache
 .maven
 .lifecycle
 .DefaultLifecycleExecutor
 .executeGoalAndHandleFailures(DefaultLifecycleExecutor.java:371)
   at
 org
 .apache
 .maven
 .lifecycle
 .DefaultLifecycleExecutor
 .executeTaskSegments(DefaultLifecycleExecutor.java:332)
   at
 org
 .apache
 .maven
 .lifecycle
 .DefaultLifecycleExecutor.execute(DefaultLifecycleExecutor.java:181)
   at
 org
 .apache
 .maven
 .lifecycle
 .LifecycleExecutorInterceptor
 .execute(LifecycleExecutorInterceptor.java:65)
   at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:356)
   at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:137)
   at org.apache.maven.cli.MavenCli.main(MavenCli.java:356)
   at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
   at
 sun
 .reflect 
 .NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:
 39)
   at
 sun
 .reflect
 .DelegatingMethodAccessorImpl 
 .invoke(DelegatingMethodAccessorImpl.java:
 25)
   at java.lang.reflect.Method.invoke(Method.java:597)
   at
 org.codehaus.classworlds.Launcher.launchEnhanced(Launcher.java:315)
   at org.codehaus.classworlds.Launcher.launch(Launcher.java:255)
   at hudson.maven.agent.Main.launch(Main.java:165)
   at hudson.maven.MavenBuilder.call(MavenBuilder.java:159)
   at hudson.maven.MavenModuleSetBuild
 $Builder.call(MavenModuleSetBuild.java:601)
   at hudson.maven.MavenModuleSetBuild
 $Builder.call(MavenModuleSetBuild.java:547)
   at hudson.remoting.UserRequest.perform(UserRequest.java:103)
   at hudson.remoting.UserRequest.perform(UserRequest.java:47)
   at hudson.remoting.Request$2.run(Request.java:236)
   at
 java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:
 441)
   at
 java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303)
   at java.util.concurrent.FutureTask.run(FutureTask.java:138)
   at java.util.concurrent.ThreadPoolExecutor
 $Worker.runTask(ThreadPoolExecutor.java:885)
   at java.util.concurrent.ThreadPoolExecutor
 $Worker.run(ThreadPoolExecutor.java:907)
   at java.lang.Thread.run(Thread.java:619)
 Caused by: org.apache.maven.plugin.MojoExecutionException: Cannot get
 the revision information from the scm repository :
 Exception while executing SCM command.
   at org.codehaus.mojo.build.BuildMojo.getRevision(BuildMojo.java:502)
   at org.codehaus.mojo.build.BuildMojo.execute(BuildMojo.java:377)
   at
 org
 .apache
 .maven
 .plugin.DefaultPluginManager.executeMojo(DefaultPluginManager.java: 
 483)
   at
 hudson
 .maven
 .agent
 .PluginManagerInterceptor.executeMojo(PluginManagerInterceptor.java: 
 182)
   at
 org
 .apache
 .maven
 .lifecycle
 

Re: hudson + build-number-plugin can't find svn

2009-07-15 Thread Lachlan Deck

On 16/07/2009, at 1:11 PM, Mohan KR wrote:

Sorry, I'm looking at the stack trace, it appears the svn executable  
is not

found.
How are you launching Hudson? Make sure the startup script that  
launches

Hudson
has /usr/local/bin in its PATH.


it was already on the path -- but to be sure we added it again PATH= 
$PATH:/usr/local/bin.


I'm now using the maven-antrun-plugin to print out the env.PATH and  
sure enough it's there twice - but it seems to work for now :-/


It'll probably fail again tomorrow... we'll see.
Cheers.



-Original Message-
From: Lachlan Deck [mailto:lachlan.d...@gmail.com]
Sent: Wednesday, July 15, 2009 9:54 PM
To: Maven Users List
Subject: Re: hudson + build-number-plugin can't find svn

On 16/07/2009, at 12:21 PM, Mohan KR wrote:


I don't have access to the project right now. I remember it is the
incompatibility with the
svn versions.

IIRC Hudson built-in (svn kit) uses 1.5, so when it checks out the
sources
the metadata is
1.5 compatible. So if your /usr/local/svn is 1.4 then you will get  
the

error.


Interesting. Makes sense.

Our /usr/local/bin/svn is 1.6.3 though.

Any suggestions on what to do?
Thanks


Thanks,
mohan kr

-Original Message-
From: Lachlan Deck [mailto:lachlan.d...@gmail.com]
Sent: Wednesday, July 15, 2009 8:02 PM
To: Maven Users List
Subject: hudson + build-number-plugin can't find svn

Hi there,

We've set up hudson on our build server but are invariably finding
that it fails to find the svn executable when building (see below
stack trace).

We've defined in hudson the environment variable 'svn' as /usr/local/
bin/svn. However this doesn't seem to be working (or not always).

Does anyone know of a surefire way of setting this up so that svn is
found on the path?
Thanks.


[INFO] Cannot get the revision information from the scm repository :
Exception while executing SCM command.

java.io.IOException: error=2, No such file or directory
[INFO]

[INFO] Trace
org.apache.maven.lifecycle.LifecycleExecutionException: Cannot get  
the

revision information from the scm repository :
Exception while executing SCM command.
at
org
.apache
.maven
.lifecycle
.DefaultLifecycleExecutor.executeGoals(DefaultLifecycleExecutor.java:
703)
at
org
.apache
.maven
.lifecycle
.DefaultLifecycleExecutor
.executeGoalWithLifecycle(DefaultLifecycleExecutor.java:540)
at
org
.apache
.maven
.lifecycle
.DefaultLifecycleExecutor.executeGoal(DefaultLifecycleExecutor.java:
519)
at
org
.apache
.maven
.lifecycle
.DefaultLifecycleExecutor
.executeGoalAndHandleFailures(DefaultLifecycleExecutor.java:371)
at
org
.apache
.maven
.lifecycle
.DefaultLifecycleExecutor
.executeTaskSegments(DefaultLifecycleExecutor.java:332)
at
org
.apache
.maven
.lifecycle
.DefaultLifecycleExecutor.execute(DefaultLifecycleExecutor.java:181)
at
org
.apache
.maven
.lifecycle
.LifecycleExecutorInterceptor
.execute(LifecycleExecutorInterceptor.java:65)
at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:356)
at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:137)
at org.apache.maven.cli.MavenCli.main(MavenCli.java:356)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at
sun
.reflect
.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:
39)
at
sun
.reflect
.DelegatingMethodAccessorImpl
.invoke(DelegatingMethodAccessorImpl.java:
25)
at java.lang.reflect.Method.invoke(Method.java:597)
at
org.codehaus.classworlds.Launcher.launchEnhanced(Launcher.java:315)
at org.codehaus.classworlds.Launcher.launch(Launcher.java:255)
at hudson.maven.agent.Main.launch(Main.java:165)
at hudson.maven.MavenBuilder.call(MavenBuilder.java:159)
at hudson.maven.MavenModuleSetBuild
$Builder.call(MavenModuleSetBuild.java:601)
at hudson.maven.MavenModuleSetBuild
$Builder.call(MavenModuleSetBuild.java:547)
at hudson.remoting.UserRequest.perform(UserRequest.java:103)
at hudson.remoting.UserRequest.perform(UserRequest.java:47)
at hudson.remoting.Request$2.run(Request.java:236)
at
java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:
441)
at
java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303)
at java.util.concurrent.FutureTask.run(FutureTask.java:138)
at java.util.concurrent.ThreadPoolExecutor
$Worker.runTask(ThreadPoolExecutor.java:885)
at java.util.concurrent.ThreadPoolExecutor
$Worker.run(ThreadPoolExecutor.java:907)
at java.lang.Thread.run(Thread.java:619)
Caused by: org.apache.maven.plugin.MojoExecutionException: Cannot get
the revision information from the scm repository :
Exception while executing SCM command.
at org.codehaus.mojo.build.BuildMojo.getRevision(BuildMojo.java:502)
at org.codehaus.mojo.build.BuildMojo.execute(BuildMojo.java:377)