[ANNOUNCE] Apache Archiva 1.3.5 Released!

2011-05-26 Thread Deng Ching
The Apache Archiva team would like to announce the release of Archiva 1.3.5. This is primarily a security and bug fix release. All users are advised to upgrade. Archiva is available for download from: * http://archiva.apache.org/download.html Archiva is an application for managing one or more rem

RE: site-deploy suppresses actual build in my project

2011-05-26 Thread Martin Gainty
run mvn -e -X deploy site-deploy to see environment and debug information do you see anything missing (.properties or.xml or a folder) ? Martin Gainty __ Verzicht und Vertraulichkeitanmerkung/Note de déni et de confidentialité Diese Nachricht ist

site-deploy suppresses actual build in my project

2011-05-26 Thread Benson Margulies
After not releasing a particular project of mine for a moment, I found that release:perform failed today. After some sleuthing, I discover that the problem is that running mvn deploy site-deploy in this project results in stopping dead before even running compile. No failure, it just doesn't

site-deploy suppresses actual build in my project

2011-05-26 Thread Benson Margulies
2.2.1. After not releasing a particular project of mine for a while, I found that release:perform failed today. After some sleuthing, I discover that the problem is that running mvn deploy site-deploy in one module of this project results in stopping dead before even running compile. No fail

maven3 - how to switch wagon provider (due to long password)

2011-05-26 Thread Miki Tebeka
Greetings, I have a long password that causes issues with the default wagon provider (same as http://jira.codehaus.org/browse/MNG-4754) Using maven 2 I was able to solve that by adding httpclient to ~/.m2/settings.xml We switched to maven 3 and the problem reappeared, how ca

Setting addition JVM configuration with appassemble-maven-plugin

2011-05-26 Thread Dan Tran
It seems 'defaultJvmSettings' [1] from example page got ignored ( ie i dont see that paras at runtime ) Any one get this working? I need to passing additional JVM config ( like -XX:+CMSPermGenSweepingEnabled -XX:+CMSClassUnloadingEnabled ) Thanks Dan [1] http://mojo.codehaus.org/appassembler/

Re: maven update

2011-05-26 Thread Wayne Fay
> For some of my projects, it is not able to dowload the dependencies from > Nexus and gives below error. How do i force it? Try mvn -U but realize the "No response received after 6" means that you are having troubles connecting to the Nexus instance so this may not resolve the issue. Are you

Re: Unable to get antrun to run

2011-05-26 Thread Wayne Fay
> Unfortunately, same result -- my antrun tasks are not executing.  I put in > > generate-test-sources Looking at your original post again, I notice that you don't have any goals defined. So your execution will fire but never call a plugin goal which means the antrun tasks will never get run. Add

Re: Maven3: Best way to include dependencies not available from a maven repository (jython, jruby)

2011-05-26 Thread Benson Margulies
You asked for the 'best way'. The best way it to stand up a repository manager and deploy them there. The other best way is to help everyone else out by pushing them to central via ossrh. Their third-party policy allows anyone to push something like this if the original author isn't willing. The

Maven3: Best way to include dependencies not available from a maven repository (jython, jruby)

2011-05-26 Thread Mirko Friedenhagen
Hello there, jython and jruby do not seem to be accessible from a repository. I am inspecting a patch for a jenkins plugin and always get these warnings: [mirko@borg email-ext-plugin]$ mvn3 clean package 2>&1 | tee log [INFO] Scanning for projects... [WARNING] [WARNING] Some problems were encount

maven update

2011-05-26 Thread Prashu Negu
HI, I just deleted my local repository and started checking all my projects again from my SVN. For some of my projects, it is not able to dowload the dependencies from Nexus and gives below error. How do i force it? Failure to transfer junit:junit:jar:4.4 from http://wrepos2.mdc.cginet:8080/nexus

Re: Unable to get antrun to run

2011-05-26 Thread laredotornado-3
Unfortunately, same result -- my antrun tasks are not executing. I put in generate-test-sources and ran both mvn -X generate-test-sources mvn -X install - Dave -- View this message in context: http://maven.40175.n5.nabble.com/Unable-to-get-antrun-to-run-tp4429367p4429489.html Sent from the

Re: Unable to get antrun to run

2011-05-26 Thread Wayne Fay
> I'm using Maven 3.0.3 on Mac 10.6.6.  I want to run a custom Ant task but it > doesn't seem to run.  I've included the plugin in the configuration below, > but my echo message is never printed (unsurprisingly everything after is ... >                                maven-antrun-plugin >          

Unable to get antrun to run

2011-05-26 Thread laredotornado-3
Hi, I'm using Maven 3.0.3 on Mac 10.6.6. I want to run a custom Ant task but it doesn't seem to run. I've included the plugin in the configuration below, but my echo message is never printed (unsurprisingly everything after is never executed either). I run by doing mvn -X test Any ideas why t

Re: Integration testing and WAR dependencies

2011-05-26 Thread Alex Lopez
Thanks Wayne, really useful explanations. I already had googled a bit about this but, as always, one cannot expect to find good examples or practices out there and I have a high respect for this list opinions, specially about "the maven way" which I see now again and again ends up always with l

Re: Integration testing and WAR dependencies

2011-05-26 Thread Wayne Fay
> The thing is, not even the classes in the WAR show up in the test module. > Are WAR-type modules never supossed to be added as dependencies? I read Try packaging a utility class file in a War, and then run it from "java -cp blah.war YourClass." War files are not understood by the JVM, only Jar f

-U downloads the same maven-metadata.xml over and over

2011-05-26 Thread Leonard Ehrenfried
Hi, we're having a problem since moving over from Maven 2 to Maven 3: if we build with the '-U' flag, checking for artifact updates takes a lot longer compared to Maven 2. I'm not sure what Maven 2 did in this case, but it seems that Maven downloads all of the maven-metadata.xml's over and over.

Re: maven-gwt-plugin?

2011-05-26 Thread Joachim Van der Auwera
I think that is very old. Try using org.codehaus.mojo gwt-maven-plugin Kind regards, Joachim On 05/26/2011 03:28 PM, Martin Gainty wrote: Hi Folks- attempting to get maven-gwt built and running into a raft of missing files and libraries (and or wrong version of libraries) e.g. 1)maven-gwt s

Re: Maven 3.0 Artefact/Dependency version discussion request

2011-05-26 Thread Manfred Moser
Why dont you use the buildnumber plugin? That might be able to do it for you.. http://mojo.codehaus.org/buildnumber-maven-plugin/ > For what it's worth, I agree with you both (version strings should be > controlled via the -ahem- version control system), but I am willing to > allow Maven (more to

Integration testing and WAR dependencies

2011-05-26 Thread Alex Lopez
Hi folks, using 3.0.3. I'm in the process of creating a test module for my multi-module web project, to perform integration tests. I have a fairly standard setup, a WAR-type module depending on several other modules. I have some classes I want to test residing on the WAR and some in other m

Re: maven-gwt-plugin?

2011-05-26 Thread Antonio Petrelli
2011/5/26 Martin Gainty > > anyone have 6 digit precision GPS lat/long coords for Tripoli? > Only 4 digits sorry: 32.8761, 13.1876 I'm curious to see what happens next... Antonio

RE: maven-gwt-plugin?

2011-05-26 Thread Martin Gainty
anyone have 6 digit precision GPS lat/long coords for Tripoli? ciao! Martin __ Verzicht und Vertraulichkeitanmerkung/Note de déni et de confidentialité Diese Nachricht ist vertraulich. Sollten Sie nicht der vorgesehene Empfaenger sein, so bitten wir

Re: maven-gwt-plugin?

2011-05-26 Thread Anders Hammar
There is hope for all robots then... /Anders (mobile) Den 26 maj 2011 15.46 skrev "Antonio Petrelli" : > 2011/5/26 Martin Gainty > >> >> as long as i can keep ahnold away from cyberdyne systems corp >> > > Surely it's the first time he's got some sense of humour :-D > > Antonio

Re: maven-gwt-plugin?

2011-05-26 Thread Antonio Petrelli
2011/5/26 Martin Gainty > > as long as i can keep ahnold away from cyberdyne systems corp > Surely it's the first time he's got some sense of humour :-D Antonio

RE: maven-gwt-plugin?

2011-05-26 Thread Martin Gainty
as long as i can keep ahnold away from cyberdyne systems corp Martin-- __ Verzicht und Vertraulichkeitanmerkung/Note de déni et de confidentialité Diese Nachricht ist vertraulich. Sollten Sie nicht der vorgesehene Empfaenger sein, so bitten wir hoef

Re: maven-gwt-plugin?

2011-05-26 Thread Antonio Petrelli
2011/5/26 Justin Edelson > Is this the first time Martin has posted a new thread to the list? > IIRC, "he" has just been posting replies. > > I fear this means that SkyNet is coming... > Surely it's not first, but you can count them on fingers of one hand. Antonio

Re: maven-gwt-plugin?

2011-05-26 Thread Justin Edelson
Is this the first time Martin has posted a new thread to the list? IIRC, "he" has just been posting replies. I fear this means that SkyNet is coming... Justin 2011/5/26 Martin Gainty : > > Hi Folks- > > attempting to get maven-gwt built and running into a raft of missing files > and libraries

maven-gwt-plugin?

2011-05-26 Thread Martin Gainty
Hi Folks- attempting to get maven-gwt built and running into a raft of missing files and libraries (and or wrong version of libraries) e.g. 1)maven-gwt supplies no pom.xml so any attempt at acquiring the right version of dependency is hit or miss 2)here is a import from com.google.cgwt.dev.jdt

Re: SNAPSHOT's in Maven Central

2011-05-26 Thread Anders Hammar
I've also filed GRECLIPSE-1065. /Anders On Thu, May 26, 2011 at 14:33, Juven Xu wrote: > these snapshots are synced from http://repository.codehaus.org: > > http://repository.codehaus.org/org/codehaus/groovy/groovy-eclipse-batch/ >

Re: SNAPSHOT's in Maven Central

2011-05-26 Thread Juven Xu
these snapshots are synced from http://repository.codehaus.org: http://repository.codehaus.org/org/codehaus/groovy/groovy-eclipse-batch/ http://repository.codehaus.org/org/codehaus/groovy/groovy-eclipse-compiler/

Re: SNAPSHOT's in Maven Central

2011-05-26 Thread Anders Hammar
One thing is that project isn't using the Codehaus Nexus instance, but the old maven repo... /Anders On Thu, May 26, 2011 at 13:20, Karl Heinz Marbaise wrote: > Hi, > > i've got a simple question: > > How could it happen to have SNAPSHOT releases in Maven Central: > > Found by accident: > http:

SNAPSHOT's in Maven Central

2011-05-26 Thread Karl Heinz Marbaise
Hi, i've got a simple question: How could it happen to have SNAPSHOT releases in Maven Central: Found by accident: http://repo1.maven.org/maven2/org/codehaus/groovy/groovy-eclipse-compiler/ Kind regards Karl Heinz Marbaise - Kind regards Karl Heinz Marbaise http://www.soebes.de http: