Re: Error building CAS

2009-02-22 Thread Jörg Schaible
Vinicius Borges wrote at Freitag, 20. Februar 2009 20:35: > That's ok Wayne, > > Maybe the title of the email should be wrong. For your information, I > have sent this question to the CAS forum, but > the problem isn't with CAS.  For that, I became here to find help... > no problems. > > You can

RE: New repository for Maven snapshots

2009-02-22 Thread Martin Gainty
Has anyone seen the maven-plugin for eclipse 3.4? I see eclipse plugins 3.2x and 3.3x but no 3.4.. ? Martin __ Disclaimer and confidentiality note Everything in this e-mail and any attachments relates to the official business of Sender. This transmis

RE: New repository for Maven snapshots

2009-02-22 Thread Brian E. Fox
Hi Wes, see here for information about using the new repo: https://issues.apache.org/jira/browse/INFRA-1896 and here for a little background: https://issues.apache.org/jira/browse/INFRA-1885 -Original Message- From: Wes Wannemacher [mailto:w...@wantii.com] Sent: Saturday, February 21, 200

Re: Getting error when trying to generate report

2009-02-22 Thread Wayne Fay
> [ERROR] ResourceManager : unable to find resource 'VM_global_library.vm' in > any resource loader. > Apparently a VM_global_library.vm is missing? Where do I specify it? http://lmgtfy.com/?q=maven+VM_global_library.vm Also, the Maven Users archive has >50 hits for this particular issue. Check

Re: Getting error when trying to generate report

2009-02-22 Thread Brett Randall
I'd try googling "ResourceManager : unable to find resource 'VM_global_library.vm' in any resource loader" - I did and got lots of juicy hits suggesting particular plug versions etc. - have you tried those suggestions? Best Brett On Sun, Feb 22, 2009 at 6:39 AM, John Wooten wrote: > INFO] Creat

troubleshooting error messages from was6 plugin

2009-02-22 Thread Barry Kern
HI, I am attempting to use the WAS6 plugin and I cannot figure what I am doing wrong. I am attempting to connect to a remote server running WAS6.1 that I also have a locally mapped drive to(Y:). org.codehaus.mojo was6-maven-plugin 1.1 integration-test integration-test

Getting an odd error when following example on Maven example page.

2009-02-22 Thread John Wooten
[WARNING] DEPRECATED: Binding aggregator mojos to lifecycle phases in the POM is considered dangerous. This feature has been deprecated. Please adjust your POM files accordingly. Offending mojo: org.apache.maven.plugins:maven-project-info-reports-plugin:2.1:dependency-convergence Project: com.a

Getting error when trying to generate report

2009-02-22 Thread John Wooten
INFO] Created: 20 parsers. [INFO] Velocimacro : initialization starting. [INFO] Velocimacro : adding VMs from VM library template : VM_global_library.vm [ERROR] ResourceManager : unable to find resource 'VM_global_library.vm' in any resource loader. [INFO] Velocimacro : error using VM library temp

Re: Rename file in target dir

2009-02-22 Thread Oleg Taranenko
Martin, idea was to avoid changing of the batch along with version changing. Though the solution is found, see the other answers in thread, I thank you for your email. Cheers, Oleg am Sunday, February 22, 2009 um 5:18 PM schrieben Sie: > is there a reason why you prefer to change jar name over

Re: Rename file in target dir

2009-02-22 Thread Oleg Taranenko
Wendy Smoak, although I've already solutions (ironically, looking at the mvn.bat) I'm very appreciate to your pointing. Sure later it will be required. In this case solution is simple and fit to me. some lines before call loop: for %%i in ("%MYTOOL_HOME%\lib\mytool*") do set MYTOOL_JAR="%%i" th

Re: Auto creating the tool version string

2009-02-22 Thread Oleg Taranenko
Wendy, thank you. Exactly what I need. am Sunday, February 22, 2009 um 4:04 PM schrieben Sie: > On Sun, Feb 22, 2009 at 7:00 AM, Google Mail > wrote: >> Is there maven support to supply this three parameters (versionId, svn >> version and compile timestamp) direct into the java source code >

Re: Mavenizing existing project

2009-02-22 Thread Ian Petzer
Hi Steve, I use Maven for building my projects and the eclipse WTP plugin as well. JSP re-compilation while running and hot swap code replacement while debugging has always worked for me. On Sun, Feb 22, 2009 at 5:21 PM, Steve Cohen wrote: > Thanks Stephen: > > I figured there would always be o

Re: Mavenizing existing project

2009-02-22 Thread Steve Cohen
Thanks Stephen: I figured there would always be one manual deployment step but I would like to at least get rid of the post-eclipse export, pre-deploy manual steps. I have one more question I meant to ask earlier but forgot. I do make use of the Eclipse WTP environment and a local Tomcat ser

RE: Rename file in target dir

2009-02-22 Thread Martin Gainty
is there a reason why you prefer to change jar name over adding your custom jar to the classpath java -classpath %MYTOOL_HOME%\lib\mytool-1.0.1-SNAPSHOT.jar;mytool.jar org.tigris.mytool.App ? Martin __ Disclaimer and confidentiality note Everything

Re: Rename file in target dir

2009-02-22 Thread Wendy Smoak
On Sun, Feb 22, 2009 at 7:25 AM, Oleg Taranenko wrote: > How I > can rename the artifact jar from format mytool-1.0.1-SNAPSHOT.jar to > mytool.jar, before packaging it into assembly? > > I'm using now bootstrap batch file a la mvn.bat. > java -classpath %MYTOOL_HOME%\lib\mytool-1.0.1-SNAPSHOT.

Re: Auto creating the tool version string

2009-02-22 Thread Wendy Smoak
On Sun, Feb 22, 2009 at 7:00 AM, Google Mail wrote: > Is there maven support to supply this three parameters (versionId, svn > version and compile timestamp) direct into the java source code > without handy synchronization with pom.xml, svn info and so on? Take a look at the buildnumber plugin [

Re: Auto creating the tool version string

2009-02-22 Thread Stephen Connolly
There are ways... they probably involve creating manifest entries 2009/2/22 Google Mail > Stephen, > > another chanllenge, > > mytool --version should give > > mytool, version 1.0-SNAPSHOT (b476) > compiled Feb 17 2009, 12:42:22 > > Is there maven support to supply this three parameters (versi

Re: Mavenizing existing project

2009-02-22 Thread Stephen Connolly
2009/2/22 Steve Cohen > I am considering"Mavenizing" a pre-existing project. > > This project consists of a Web Application (WAR file) and a server side JAR > module, built from several Eclipse projects, some of which are dependencies > of both modules, as well as many third party jars, both open

Rename file in target dir

2009-02-22 Thread Oleg Taranenko
Hello Maven, I have a dumb question working with assembly plugin, sorry. How I can rename the artifact jar from format mytool-1.0.1-SNAPSHOT.jar to mytool.jar, before packaging it into assembly? I'm using now bootstrap batch file a la mvn.bat. java -classpath %MYTOOL_HOME%\lib\mytool-1.0

Re: Auto creating the tool version string

2009-02-22 Thread Google Mail
Stephen, another chanllenge, mytool --version should give mytool, version 1.0-SNAPSHOT (b476) compiled Feb 17 2009, 12:42:22 Is there maven support to supply this three parameters (versionId, svn version and compile timestamp) direct into the java source code without handy synchronization wi

Mavenizing existing project

2009-02-22 Thread Steve Cohen
I am considering"Mavenizing" a pre-existing project. This project consists of a Web Application (WAR file) and a server side JAR module, built from several Eclipse projects, some of which are dependencies of both modules, as well as many third party jars, both open source (many of which themse

Re: Auto creating the tool version string

2009-02-22 Thread Stephen Connolly
I understand what you are trying to do, but you will end up losing the version range functionality in maven with version numbers in that format have a look at maven's rules fir comparing version numbers, then look at my bitchfest with Jason over me wanting five digit support and Jason sayin

Re: New repository for Maven snapshots

2009-02-22 Thread Stephen Connolly
Sent from my [rhymes with myPod] ;-) On 22 Feb 2009, at 02:15, jie...@gmail.com wrote: On Sat, Feb 21, 2009 at 8:52 PM, Wes Wannemacher wrote: Brian, right now, the struts project pushes its snapshots over to people.a.o when the apache hudson builds them (as often as daily, but usually