passing the deployed artifact URL to another system

2013-10-21 Thread Adam Downer
Hi users, I was wondering if there was a simple way to achieve the following. I have looked at the deploy plugin project pages, searched the mailing list and interwebs and I can't find examples of what I am trying to do or a possible method for me to achieve it. I use maven to upload software

Re: dependency build-classpath returns wrong order

2013-10-21 Thread dsilve
I have been able to understand where the issue is, but not how to solve it. The wrong classpath is generated when I use the configuration property excludeScope=provided. So if I run: mvn dependency:build-classpath I get the correct classpath, but if I run: mvn dependency:build-classpath

Re: passing the deployed artifact URL to another system

2013-10-21 Thread Stephen Connolly
These are not the droids you are looking for... Also, this is not the problem you want to solve... Nexus Pro has this nice feature called staging whereby the URL you deploy to is not the same URL that people download from. I know Artifactory has similar features. The final nail in the coffin is

Re: passing the deployed artifact URL to another system

2013-10-21 Thread Adam Downer
Thanks for your reply Stephen, So, in my case at least, things are pretty simple - No nexus pro. So no staging or other middle man type repos. - No repository grouping. Releases is releases and snapshots is snapshots (we have restrictions on who can access what and setting up groups made

Re: passing the deployed artifact URL to another system

2013-10-21 Thread Stephen Connolly
On 21 October 2013 14:23, Adam Downer adam.dow...@gamesys.co.uk wrote: Thanks for your reply Stephen, So, in my case at least, things are pretty simple - No nexus pro. So no staging or other middle man type repos. - No repository grouping. Releases is releases and snapshots is snapshots

Support for dependencies in reporter plugins

2013-10-21 Thread Andrew Pennebaker
For plugins intended for reporting, it would be nice if users could configure their dependencies directly in the reporterpluginsplugin, rather than having to write a dummy buildpluginsplugin. This would simplify configuring cobertura-maven-plugin for sun tool dependencies, for example. --

Re: passing the deployed artifact URL to another system

2013-10-21 Thread Adam Downer
I have continued to dig into the code in order to try and find a potential answer wo my question. The mvane deploy plugin code

Re: passing the deployed artifact URL to another system

2013-10-21 Thread Russell Gold
There is a free version of nexus available; it is quite easy to configure. Why do you want to avoid the tools with which maven works best? A repository manager of some kind is a basic assumption of much of the way maven users work. It seems as though you are going out of your way to make it

Re: passing the deployed artifact URL to another system

2013-10-21 Thread Curtis Rueden
Hi Russell, Adam everyone, Russell wrote: There is a free version of nexus available He already said he is using Nexus. And anyway, use Nexus does not address his actual question. Adam wrote: I want to store the full nexus url of artifacts in my other app, to use as the main reference for

Problem downloading dependencies

2013-10-21 Thread Robert Dailey
Hi, I'm very new to maven so I have no idea what's causing this error. I have a sample application and I type mvn clean install -U, which seems to grab all dependencies except one: [WARNING] The POM for org.springframework.osgi:servlet-api.osgi:jar:2.5-SNAPSHOT is missing, no dependency

Re: maven-ear-pugin modify applicaion.xml

2013-10-21 Thread Surendran D
thanks used following setting to get it work. applicationXmlsrc/main/resources/META-INF/application.xml/applicationXml On Thu, Oct 17, 2013 at 6:26 PM, Wayne Fay wayne...@gmail.com wrote: I have requirement to exclude some entries in application.xml during ear build. ... In my case I

include a new file under

2013-10-21 Thread Surendran D
Hi, I am using maven-ear-plugin to generate my ear. I need to include a new file xml under EAR/META-INF/myxmlfile how can I include that in my META-INF/

Re: include a new file under

2013-10-21 Thread Surendran D
I have earSourceIncludessrc/main/resources/META-INF/myxmlFile.xml/earSourceIncludes but its not included under EAR/META-INF/ Thanks On Tue, Oct 22, 2013 at 10:31 AM, Surendran D surendra...@gmail.com wrote: Hi, I am using maven-ear-plugin to generate my ear. I need to include a new file

Re: include a new file under

2013-10-21 Thread Surendran D
Just figured it out it worked after adding following configuration earSourceDirectory${basedir}/src/main/resources/earSourceDirectory earSourceIncludesMETA-INF/myxmlFile.xml/earSourceIncludes On Tue, Oct 22, 2013 at 10:51 AM, Surendran D surendra...@gmail.com wrote: I have