[ANN] Maven Eclipse Plugin 2.9 Released

2012-02-13 Thread Barrie Treloar
The Maven team is pleased to announce the release of the Maven Eclipse Plugin, version 2.9 The Maven Eclipse Plugin is used to generate Eclipse IDE files (*.classpath, *.wtpmodules and the .settings folder) for use with a project. http://maven.apache.org/plugins/maven-eclipse-plugin/ [Please see

Re: dependency plugin usage

2012-02-13 Thread Stephen Connolly
On 13 February 2012 18:20, wrote: > I'm wondering what the difference would be between the following two ways of > handling copying of a certain type of maven dependency.  The dependency I'm > talking about is something like, for instance, a self-extracting installer > that I want to bundle wi

Re: Is there support for Maven 3 in Intellij--Community version

2012-02-13 Thread Manfred Moser
On 12-02-13 01:09 PM, Gogirl wrote: I would like to know if i can import Maven 3 projects and run goals in the community version of intellij or do I need to use Maven 2 for this? I would appreciate some advise on the most recommended way to use Maven within Intellij. Just open the project fr

Is there support for Maven 3 in Intellij--Community version

2012-02-13 Thread Gogirl
I would like to know if i can import Maven 3 projects and run goals in the community version of intellij or do I need to use Maven 2 for this? I would appreciate some advise on the most recommended way to use Maven within Intellij. -- View this message in context: http://maven.40175.n5.nabble.c

How to execute an external script within war's pom file

2012-02-13 Thread johnjoseph
Hi Everyone, My aim is to run a shell script during the compilation/package phase within the war project's pom file. I want to run the script only once. I am pretty new to maven and i was able to do something close to that with the below script. Now this code executes during both the compilation a

Re: mvn release:prepare over SSH?

2012-02-13 Thread Philip Whitehouse
> svn: Network connection closed unexpectedly Did you try with e or X switch to see if there was more info about why the network connection closed? Philip Whitehouse On 13 Feb 2012, at 16:57, motes motes wrote: > I am trying to release a maven project located on a server requiring > ssh acces

Re: DefaultProjectBuilder ... mavenTools: null [Was: Re: Programmatically get maven properties]

2012-02-13 Thread Max Spring
Yes, having a projectBuilder in the Mojo did the trick. Thank you! The complete working example is down below. -Max package org.example; import java.io.File; import org.apache.maven.model.Model; import org.apache.maven.model.building.ModelBuildingRequest; import org.apache.maven.plugin.Abstract

Re: Maven-war-plugin: setting up manifest class-path properly

2012-02-13 Thread Patrick Garner
I read "Class Loading in AS7" several times and also the JEE6 spec. as I went about configuring the poms. My goal was to produce an EAR that was portable. Per spec. the sub deployments (e.g. modules) within the EAR are by default isolated from each other. JBoss provides a means for modules to no

dependency plugin usage

2012-02-13 Thread Chad.Davis
I'm wondering what the difference would be between the following two ways of handling copying of a certain type of maven dependency. The dependency I'm talking about is something like, for instance, a self-extracting installer that I want to bundle with my custom assembly. I've deployed this

local repository SNAPSHOT files names for maven2

2012-02-13 Thread Mike Power
Is there a way I can guarantee that when downloading dependencies into the local repository maven will use the word "SNAPSHOT" in the version instead of the timestamp? - To unsubscribe, e-mail: users-unsubscr...@maven.apache.

mvn release:prepare over SSH?

2012-02-13 Thread motes motes
I am trying to release a maven project located on a server requiring ssh access. I need to release the project from my local machine using the cmd command line in windows 7. 1) Created a putty profile with the host info an specified my private key 2) Installed TortoiseSVN and created a variable w

Re: maven

2012-02-13 Thread Olivier Lamy
Hello, Apache Archiva project has his own mailing lists (see http://archiva.apache.org/mail-lists.html ) So feel free to ask in this place :-) -- Olivier Lamy Talend: http://coders.talend.com http://twitter.com/olamy | http://linkedin.com/in/olamy 2012/2/13 Jorge Infante Osorio : > Hi all. > >

maven

2012-02-13 Thread Jorge Infante Osorio
Hi all. It´s possible to configure the DarchetypeCatalog and DarchetypeRepository parameters inside a maven repository management like Apache Archiva? Not in the client settings.xml in the local repo. I need to do that because the Archiva Server have full internet access to download an archetype

AppAssembler and very long classpath

2012-02-13 Thread Thorsten Heit
Hi, I'm using the appassembler plugin to generate executable scripts for Windows and Unix machines. The resulting structure is basically the following: +- bin +- lib +- log My pom.xml contains: org.codehaus.mojo appassembler-maven-plugin 1.2 attach-appassembler pac

Re: Calling Maven from Java

2012-02-13 Thread Karl Heinz Marbaise
Hi, I am looking to do something similar. I want to deploy maven to a web server where I can remotely run commands like mn install to deploy jars from our local repository for multiple applications without having to deploy multiple war files. Do you need to deploy the artifacts only ? like war'

Re: How to deal with maintenance branches?

2012-02-13 Thread Stephen Connolly
On 10 February 2012 18:58, Markus Karg wrote: > What is Maven 3's best practice to deal with "Maintenance Branches" > (non-feature, bug-fix-only line of development)? > > > > Our company needs to maintain a second development line besides "trunk", > which we call " The Maintenance Branch", for tho

RE: Aggregating projects with pom packaging type

2012-02-13 Thread Papiež Vítězslav
Hi I have similar project structure. It works fine for me. One diference is parent written in modules. To be more specific here is an example. Aggregation: [...] org.myName myProjectGlobal trunk pom myProjectA myProjectB Pom A: [...] org.myName myProjectGlobal