Re: Problems with MAVEN's-ANT on OpenVMS

2011-10-20 Thread Benson Margulies
Putting on my pointy hat with the stars on it, I'm predicting that various APIs of the File object return strings ending in "." on OpenVMS whether you want them to or not. Lucene creates a file that it thinks is named '1', (or something ending with '1') and OpenVMS helpfully decides that it's name

Re: Problems with MAVEN's-ANT on OpenVMS

2011-10-20 Thread Wayne Fay
> With knowing the details about our environment > would you expect that Lucene written in clean Java > is not operating on such a platform? Without a comprehensive analysis of the source code for Lucene (and potentially, some or all of its dependencies) it is impossible to say anything conclusive

Re: zip instead of jar

2011-10-20 Thread Olivier Lamy
Hello, IMHO, Use assembly plugin. If you want those code zip plugin. It's available in sandbox svn: http://svn.apache.org/repos/asf/maven/sandbox/trunk/plugins/maven-zip-plugin/ 2011/10/19 louis_xie : > Hi, > I know this post has been quite dated to date, however, i believe it > continues to be

RE: Error during release:perform with multi-module git project on Windows

2011-10-20 Thread codingplayer
Hi James, thx for your hint. when running the maven command (mvn release:prepare release:perform) in a cmd.exe (rather than in a cygwin/GitBash) it works for me. br Roman -- View this message in context: http://maven.40175.n5.nabble.com/Error-during-release-perform-with-multi-module-git-proje

RE: Maven 3.0.3: Problems with SNAPSHOT updates

2011-10-20 Thread Thiessen, Todd (Todd)
There are two ways. You can force maven to update snapshot by using the -U option. Ie: mvn -U install Or you can change when maven updates snapshots by default by changing the updatePolicy in your settings.xml file. http://maven.apache.org/ref/3.0.3/maven-settings/settings.html > -Origin

Maven 3.0.3: Problems with SNAPSHOT updates

2011-10-20 Thread Dreier Ruediger
Hello! We are currently using Maven 2.2.1 and Artifactory 2.3.4 (rev. 13017) as repository server and I am now evaluating if we can migrate to Maven 3. I am testing Maven 3 in the following environment: Apache Maven 3.0.3 (r1075438; 2011-02-28 18:31:09+0100) Java version: 1.6.0_26, vendor: Sun

Change the values of custom properties during project creation

2011-10-20 Thread ntzanos
Hello, I want to change the default values that I have set in my archetype pom.xml to some custom value during project creation. Is this possilble? -- View this message in context: http://maven.40175.n5.nabble.com/Change-the-values-of-custom-properties-during-project-creation-tp4921393p4921393

RE: Error during release:perform with multi-module git project on Windows

2011-10-20 Thread Nord, James
Cygwin, cmd and git can get in each others way and confuse things. do you have the ability to try from a cmd.exe console and with the native git port? /James -Original Message- From: codingplayer [mailto:roman.ce...@smartengine.at] Sent: 20 October 2011 10:25 To: users@maven.apache.org S

Re: writing a parent pom that does not execute its plugins

2011-10-20 Thread Dirk Olmes
>>> Regarding your use case: do you have a) N products which need to be >>> packaged all in the same way or b) one product which has to be packaged >>> in N similar variants? Or where is the variation in your packaging >>> otherwise? What differs between the projects you're attempting to package? >

Re: Error during release:perform with multi-module git project on Windows

2011-10-20 Thread codingplayer
Hi, we currently experience the same problem. running mvn release:prepare (on a Windows 7 machine from a cygwin console) in a module-project fails with the following error: [INFO] Executing: cmd.exe /X /C "git add -- pom.xml C:\DATA\Workspace\sandbox\sandbox-module1\pom.xml C:\DATA\Workspace\san

Re: writing a parent pom that does not execute its plugins

2011-10-20 Thread Stephen Connolly
On 20 October 2011 06:38, Dirk Olmes wrote: > On 20.10.2011, at 00:21, Ansgar Konermann wrote: >> >> Am 18.10.2011 13:28, schrieb Dirk Olmes: >>> >>> I am aware of the section but fail to see if it would >>> help: I'd still have to list all the plugins to be executed in the >>> individual install

Re: Problems with MAVEN's-ANT on OpenVMS

2011-10-20 Thread Tamás Cservenák
Um, unsure about OS versions, but by googling I found this: http://vouters.dyndns.org/tima/OpenVMS-CRTL-Java-C-Illegal_seek-lucene-Problem_with_running_any_lucene_based_Java_code.html Looks like Java on openVMS makes some software -- lucene among them -- 0xdeadbeef. Thanks, ~t~ On Thu, Oct 13,

AW: How does Maven use timestamps?

2011-10-20 Thread Stadelmann Josef
I am havening a very similar thing which I would say fosters what you say. I know I have a somehow unsupported maven as I runs to some degree on OpenVMS But, I would be glad how experts explain the following: $ cd /dka3/sw-projekte/asf.axis/axis2/java/core/tags/v1.6.0 $ mvn "clean install"

AW: How to install MAVEN on Windows 7

2011-10-20 Thread Stadelmann Josef
But if windows claims as in this case that the command is not known, then the PATH does not know the .exe, .com or .bat making the command and maven has ./bin/mvn.bat hence you have to add (as one points out previously %M2_HOME%\bin; to the PATH and there best to the SYSTEM not the USER Josef

AW: default auth for settings.xml

2011-10-20 Thread Stadelmann Josef
This is very clean clear statement! Please make maven pointing this out to the user to use a repo if it is so wasteful. I am by far not an expert of maven or repositories, but I agree with you, it gets much more simple as all proxy connections and all connections to external servers can be ha

AW: Problems with MAVEN's-ANT on OpenVMS

2011-10-20 Thread Stadelmann Josef
Thank you Benson pointing me into the right direction. Was an oversight on my site, that yet another product got involved. Lucene So I have to download yet another hopefully open source project and build it on OpenVMS We attempted to run the Sonatype nexus war on our Apache Tomcat/5.5.26 AS

Re: Uncompiled classes resulting in COMPILATION ERROR : cannot find symbol

2011-10-20 Thread Guillaume Polet
OK, thanks for your answers. On my side, I made sure that those issues arise on both my laptop and on jenkins. I have also tried your suggestions on both, but unfortunately they did not work for me. Anyway, thanks again for spending the time to reply. Cheers, Guillaume Le 20/10/2011 09:15, bg

Re: Uncompiled classes resulting in COMPILATION ERROR : cannot find symbol

2011-10-20 Thread bgik
Hi Maybe i should add some clarification. We don't use Jenkins, so my issue was related purely to the fact classes under src/main in my module failed to compile using mvn release:perform, meaning classes under src/test then failed with missing symbols. Increasing the heap size worked for the 3 of