Re: mvn release:prepare

2012-11-06 Thread Anders Hammar
http://maven.apache.org/plugins/maven-release-plugin/issue-tracking.html /Anders On Tue, Nov 6, 2012 at 1:19 AM, purna chandrarao pcr_bobbepa...@yahoo.comwrote: Please let me know to which address i need to send the issue. I am having maven release plugin issue. mvn release:prepare

Re: mvn release:prepare

2012-11-06 Thread Thomas Broyer
On Tue, Nov 6, 2012 at 1:19 AM, purna chandrarao pcr_bobbepa...@yahoo.com wrote: Please let me know to which address i need to send the issue. I am having maven release plugin issue. mvn release:prepare this will create tag inside tags folder. while creating tag it is pushing entire

Re: Trim string passed to extraClasspath for jetty plugin

2012-11-06 Thread Benson Margulies
You could offer a patch to the jetty plugin to clean up the string for itself. On Tue, Nov 6, 2012 at 2:53 AM, Rice Yeh rice...@gmail.com wrote: Hi, I have a need to pass a long string to the extraClasspath in jetty plugin. The content of the string is changed often and I like to format it

Re: Filtering web.xml?

2012-11-06 Thread Tomasz Pik
On Tue, Nov 6, 2012 at 4:45 PM, Billy Newman newman...@gmail.com wrote: I am trying to filter my web.xml with no luck. Current structure: pom.xml -- src ---main webapp -WEB-INF --web.xml I have the war plugin defined as follows: plugin

Re: Filtering web.xml?

2012-11-06 Thread Thomas Broyer
On Tue, Nov 6, 2012 at 4:45 PM, Billy Newman newman...@gmail.com wrote: I am trying to filter my web.xml with no luck. Current structure: pom.xml -- src ---main webapp -WEB-INF --web.xml I have the war plugin defined as follows: plugin

Websphere 8

2012-11-06 Thread goyal.sharad
Is there any sample project like Hello World exist which has Websphere 8 dependencies? I do not want to upload our runtime dependencies in the maven repository because they contains so many jars. In bbrief Is there any way to define our own runtime environment? -- View this message in

Re: Websphere 8

2012-11-06 Thread Anders Hammar
I see two options: 1. Upload the Websphere artifacts to your internal repo. This is IMO the preferred way to go as it will make it possible to use the same artifacts during compiling and testing as in runtime. 2. As long as you code against Java EE APIs, you could use any available artifacts

Re: mvn release:prepare

2012-11-06 Thread Ed Hillmann
I came across this a couple of years ago http://maven.40175.n5.nabble.com/mvn-release-prepare-cannot-tag-correctly-from-a-branch-td396112.html http://jira.codehaus.org/browse/MRELEASE-576 If memory serves, it was all around how the parent/child poms were defined, and the URL used in the

Re: Websphere 8

2012-11-06 Thread Wayne Fay
There is no way to define our own runtime? What exactly would that look like? Wayne - To unsubscribe, e-mail: users-unsubscr...@maven.apache.org For additional commands, e-mail: users-h...@maven.apache.org

Re: Websphere 8

2012-11-06 Thread hanasaki
The runtime in a maven build (ex: mvn clean install) is defined and assembled dynamically based on the dependencies and scope of the dependencies. While possible to include local jar files (based on fqn paths) in a pom.xml this tightly couples the project to a local filesystem and is generally

.m2 location

2012-11-06 Thread Java House
Hello I need to define another location for the .m2 folder. My problem is that we are having network home directories. As a result the .m2 folder is placed automatically on the network drive which is never available when you are offline. In addition to that slow network conditions makes its

Maven Ant Tasks : settingsFile doesn't work correctly in non-user directories?

2012-11-06 Thread Adam Mitchell
Hi all, I'm currently working on a project integrating a maven based dependency into our core application and am running into a bit of a problem. Despite maven itself (via IDEA maven plugin or command line mvn) being able to retrieve these successfully, when using the maven ant

Re: .m2 location

2012-11-06 Thread Barrie Treloar
On Wed, Nov 7, 2012 at 5:54 AM, Java House java4...@gmail.com wrote: Hello I need to define another location for the .m2 folder. My problem is that we are having network home directories. As a result the .m2 folder is placed automatically on the network drive which is never available when

Re: Websphere 8

2012-11-06 Thread Radim Kolar
scopeprovided/ - To unsubscribe, e-mail: users-unsubscr...@maven.apache.org For additional commands, e-mail: users-h...@maven.apache.org

Re: .m2 location

2012-11-06 Thread John Prystash
If it helps with the issues you are running into, in addition to using --settings to define the location of your settings, you can also set your local repository location with the maven.repo.local property: mvn -Dmaven.repo.local=/tmp/repository install