Re: Why isn't maven-dependency-plugin copying my artifacts anymore?

2016-03-11 Thread David M. Karr
On 03/10/2016 10:10 PM, Mark Eggers wrote: David, Are you perhaps running this inside Eclipse? If so, do you have the m2e-connector for maven-dependency-plugin installed? Can you run mvn package from the command line if you're only packaging this from Eclipse? I have run my project from

Re: Why isn't maven-dependency-plugin copying my artifacts anymore?

2016-03-11 Thread David M. Karr
On 03/10/2016 02:31 PM, David M. Karr wrote: Several days ago, on the advice of someone on another list, I configured the use of the "maven-dependency-plugin" in my POM so that the build would copy some dependencies into a local folder, not inside the target folder. This worke

Re: Why isn't maven-dependency-plugin copying my artifacts anymore?

2016-03-11 Thread David M. Karr
folder untouched. ‘mvn package’ works as expected. As usual, this still isn't doing anything for me. This time I looked closer at the console output. I'm thinking there's a clue here. I looked closer at the output from "maven-dependency-plugin". This is

Re: Why isn't maven-dependency-plugin copying my artifacts anymore?

2016-03-11 Thread Jörg Schaible
; target folder untouched. ‘mvn package’ works as expected. >> > > As usual, this still isn't doing anything for me. > > This time I looked closer at the console output. I'm thinking there's a > clue here. I looked closer at the output from > "maven-dependen

Re: Why isn't maven-dependency-plugin copying my artifacts anymore?

2016-03-10 Thread David M. Karr
On 03/10/2016 10:10 PM, Mark Eggers wrote: David, Are you perhaps running this inside Eclipse? If so, do you have the m2e-connector for maven-dependency-plugin installed? Can you run mvn package from the command line if you're only packaging this from Eclipse? I have run my project from

Re: Why isn't maven-dependency-plugin copying my artifacts anymore?

2016-03-10 Thread David M. Karr
, this still isn't doing anything for me. This time I looked closer at the console output. I'm thinking there's a clue here. I looked closer at the output from "maven-dependency-plugin". This is what I saw: - [INFO] --- maven-dependency-plugin:2.10:unpack (unpa

Re: Why isn't maven-dependency-plugin copying my artifacts anymore?

2016-03-10 Thread Mark Eggers
David, Are you perhaps running this inside Eclipse? If so, do you have the m2e-connector for maven-dependency-plugin installed? Can you run mvn package from the command line if you're only packaging this from Eclipse? I have run my project from Eclipse Mars.1, but I have the m2e-connector

Re: Why isn't maven-dependency-plugin copying my artifacts anymore?

2016-03-10 Thread Uwe Barthel
n.apache.org/POM/4.0.0 >> http://maven.apache.org/xsd/maven-4.0.0.xsd;> >>> 4.0.0 >>> >>> >>> com.cisco.yangide >>> com.cisco.yangide.parent >>> 1.1.1-SNAPSHOT >>> ../.. >>> >>> >>> com.cisco.yangide.core &g

Re: Why isn't maven-dependency-plugin copying my artifacts anymore?

2016-03-10 Thread David Karr
arent > >1.1.1-SNAPSHOT > >../.. > > > > > > com.cisco.yangide.core > > eclipse-plugin > > 1.1.1-SNAPSHOT > > > >src > > > > > >org.apache.maven.plugins > >maven-clean-plugin > > > > > > &g

Re: Why isn't maven-dependency-plugin copying my artifacts anymore?

2016-03-10 Thread Uwe Barthel
1.1-SNAPSHOT > >src > > >org.apache.maven.plugins >maven-clean-plugin > > > >libs > > > > &

Re: Why isn't maven-dependency-plugin copying my artifacts anymore?

2016-03-10 Thread David M. Karr
OT src org.apache.maven.plugins maven-clean-plugin libs org.apache.maven.plugins maven-dependency-plugin

Re: Why isn't maven-dependency-plugin copying my artifacts anymore?

2016-03-10 Thread Mark Eggers
em to > "libs" or "${project.build.directory}/libs". It ("copy", to be specific) > did it the first time I ran this, but never since then. > > I'm using Maven 3.3.9, with JDK 1.8.0_60. > >> >> See the following for that information: >>

Re: Why isn't maven-dependency-plugin copying my artifacts anymore?

2016-03-10 Thread David M. Karr
On 03/10/2016 03:36 PM, Mark Eggers wrote: David, If you're providing a list of dependencies, then yes you'll use the copy instead of copy-dependencies. See the following for that information: https://maven.apache.org/plugins/maven-dependency-plugin/index.html Also, I notice that you don't

Re: Why isn't maven-dependency-plugin copying my artifacts anymore?

2016-03-10 Thread Mark Eggers
David, If you're providing a list of dependencies, then yes you'll use the copy instead of copy-dependencies. See the following for that information: https://maven.apache.org/plugins/maven-dependency-plugin/index.html Also, I notice that you don't have outputDirectory specified. If you don't

Re: Why isn't maven-dependency-plugin copying my artifacts anymore?

2016-03-10 Thread David M. Karr
e: Several days ago, on the advice of someone on another list, I configured the use of the "maven-dependency-plugin" in my POM so that the build would copy some dependencies into a local folder, not inside the target folder. This worked the very first time I ran the build with it, a

Re: Why isn't maven-dependency-plugin copying my artifacts anymore?

2016-03-10 Thread Mark Eggers
David, On 3/10/2016 2:31 PM, David M. Karr wrote: > Several days ago, on the advice of someone on another list, I configured > the use of the "maven-dependency-plugin" in my POM so that the build > would copy some dependencies into a local folder, not inside the target > fo

Why isn't maven-dependency-plugin copying my artifacts anymore?

2016-03-10 Thread David M. Karr
Several days ago, on the advice of someone on another list, I configured the use of the "maven-dependency-plugin" in my POM so that the build would copy some dependencies into a local folder, not inside the target folder. This worked the very first time I ran the build with it, and

Maven Dependency Plugin - tree view question

2016-03-03 Thread Timothy Astle
I did a dependency:tree on my project using both the 2.1 and 2.8 versions of the plugin. Actually I started with 2.8, but when I had seen something unexpected to me in the tree, I tried an older version. What I noticed is the following: 2.1 [INFO] | +- org.jacorb:jacorb:jar:3.6.1:compile

Re: Maven Dependency Plugin Default life cycle phase not executed

2015-06-02 Thread Anton Tanasenko
: mvn dependency:copy you must not put the configuration inside the executions tag. Your configuration should look like this: ... 2015-06-02 19:36 GMT+03:00 Thomas Meyer tho...@m3y3r.de: Hi, I've a question regarding the maven dependency plugin: In the usage description

Re: Maven Dependency Plugin Default life cycle phase not executed

2015-06-02 Thread Thomas Meyer
should look like this: ... 2015-06-02 19:36 GMT+03:00 Thomas Meyer tho...@m3y3r.de: Hi, I've a question regarding the maven dependency plugin: In the usage description ( https://maven.apache.org/plugins/maven-dependency-plugin/usage.html

Maven Dependency Plugin Default life cycle phase not executed

2015-06-02 Thread Thomas Meyer
Hi, I've a question regarding the maven dependency plugin: In the usage description ( https://maven.apache.org/plugins/maven-dependency-plugin/usage.html ) in section The dependency:unpack mojo it's written that: you must not put the configuration inside the executions tag. Your

Re: Maven Dependency Plugin Default life cycle phase not executed

2015-06-02 Thread Anton Tanasenko
...@m3y3r.de: Hi, I've a question regarding the maven dependency plugin: In the usage description ( https://maven.apache.org/plugins/maven-dependency-plugin/usage.html ) in section The dependency:unpack mojo it's written that: you must not put the configuration inside the executions tag

Re: Maven Dependency Plugin Default life cycle phase not executed

2015-06-02 Thread Thomas Meyer
...@m3y3r.de: Hi, I've a question regarding the maven dependency plugin: In the usage description ( https://maven.apache.org/plugins/maven-dependency-plugin/usage.html ) in section The dependency:unpack mojo it's written that: you must not put the configuration inside

[ANN] Apache Maven Dependency Plugin Version 2.10 Released

2015-01-27 Thread Karl Heinz Marbaise
://maven.apache.org/plugins/maven-dependency-plugin/ You should specify the version in your project's plugin configuration: plugin groupIdorg.apache.maven.plugins/groupId artifactIdmaven-dependency-plugin/artifactId version2.10/version /plugin Release Notes - Maven Dependency Plugin - Version 2.10 Bugs

Error with maven-dependency-plugin

2015-01-08 Thread Gilles Seghaier
Hi all, SFTB, I'm facing an issue with Maven Dependency Plugin. I have a project on which I have bound the copy-dependencies goal to generate-sources phase : project xmlns=http://maven.apache.org/POM/4.0.0; xmlns:xsi= http://www.w3.org/2001/XMLSchema-instance; xsi:schemaLocation=http

[ANN] Apache Maven Dependency Plugin Version 2.9 Released

2014-09-21 Thread Karl Heinz Marbaise
The Apache Maven team is pleased to announce the release of the Apache Maven Dependency Plugin, version 2.9 The dependency plugin provides the capability to manipulate artifacts. It can copy and/or unpack artifacts from local or remote repositories to a specified location. http

Re: maven-dependency-plugin unpacking aar format?

2014-09-04 Thread Jörg Hohwiller
Hi there, just my few cents... An artifact type is something quite central. IMHO it is not the best way to force all artifacts to keep the information how to unpack it in their POMs and then magically fiddle it out from there. If I type mvn foo and there is a maven-foo-plugin or

Re: maven-dependency-plugin unpacking aar format?

2014-07-22 Thread David Hoffer
No that was just an example so I could create a sample project. Don't read too much into this. They are just AAR dependencies (in my case they come from our build not public). The maven dependency plugin should handle these no different than it handles jars/etc. On Mon, Jul 21, 2014 at 11

Re: maven-dependency-plugin unpacking aar format?

2014-07-22 Thread William Ferguson
project. Don't read too much into this. They are just AAR dependencies (in my case they come from our build not public). The maven dependency plugin should handle these no different than it handles jars/etc. On Mon, Jul 21, 2014 at 11:32 PM, William Ferguson william.fergu

Re: maven-dependency-plugin unpacking aar format?

2014-07-22 Thread David Hoffer
, 2014 at 10:58 PM, David Hoffer dhoff...@gmail.com wrote: No that was just an example so I could create a sample project. Don't read too much into this. They are just AAR dependencies (in my case they come from our build not public). The maven dependency plugin should handle

Re: maven-dependency-plugin unpacking aar format?

2014-07-22 Thread domi
AAR dependencies (in my case they come from our build not public). The maven dependency plugin should handle these no different than it handles jars/etc. On Mon, Jul 21, 2014 at 11:32 PM, William Ferguson william.fergu...@xandar.com.au wrote: So an Android library is packaging WSDL

Re: maven-dependency-plugin unpacking aar format?

2014-07-22 Thread William Ferguson
MDP = maven-dependency-plugin @domi yes you would normally use something like the maven-assembly-plugin to disassemble (unpack) an archive. On Wed, Jul 23, 2014 at 12:49 AM, domi d...@fortysix.ch wrote: I think to recall a thread on the dev list about plans to remove the unpack goal from

Re: maven-dependency-plugin unpacking aar format?

2014-07-22 Thread Puncel, Robert (393J)
changed since it was last published. On 7/22/14, 8:08 AM, William Ferguson william.fergu...@xandar.com.au wrote: MDP = maven-dependency-plugin @domi yes you would normally use something like the maven-assembly-plugin to disassemble (unpack) an archive. On Wed, Jul 23, 2014 at 12:49 AM, domi

Re: maven-dependency-plugin unpacking aar format?

2014-07-22 Thread David Hoffer
= maven-dependency-plugin @domi yes you would normally use something like the maven-assembly-plugin to disassemble (unpack) an archive. On Wed, Jul 23, 2014 at 12:49 AM, domi d...@fortysix.ch wrote: I think to recall a thread on the dev list about plans to remove the unpack goal from

Re: maven-dependency-plugin unpacking aar format?

2014-07-22 Thread Karl Heinz Marbaise
Hi Robert, Sorry to interject, but isn¹t the unpack goal of the maven-assembly-plugin deprecated? The documentation actually refers users to the MDP¹s unpack capabilities: https://maven.apache.org/plugins/maven-assembly-plugin/plugin-info.html That page is dated from 2012, so I¹m not sure

Re: maven-dependency-plugin unpacking aar format?

2014-07-22 Thread William Ferguson
Ah well. I was just going from memory. On Wed, Jul 23, 2014 at 1:26 AM, Karl Heinz Marbaise khmarba...@gmx.de wrote: Hi Robert, Sorry to interject, but isn¹t the unpack goal of the maven-assembly-plugin deprecated? The documentation actually refers users to the MDP¹s unpack

Re: maven-dependency-plugin unpacking aar format?

2014-07-22 Thread Robert Scholte
Hi, to be able to unpack/unarchive Maven must know which Unarchiver should be used for this type. 'aar' is not one of the few default supported types, hence the exception. The plugin responsible for packaging the aar-file should also have configured how to unarchive the aar-file. In case

maven-dependency-plugin unpacking aar format?

2014-07-21 Thread David Hoffer
I'm getting the following error trying to unpack some files from an aar. Is this not supported? Is there any way to do this? Failed to execute goal org.apache.maven.plugins:maven-dependency-plugin:2.8:unpack-dependencies (unpack-service) on project service: Unknown archiver type: No such

Re: maven-dependency-plugin unpacking aar format?

2014-07-21 Thread Karl Heinz Marbaise
HI David, I'm getting the following error trying to unpack some files from an aar. Is this not supported? Is there any way to do this? Failed to execute goal org.apache.maven.plugins:maven-dependency-plugin:2.8:unpack-dependencies (unpack-service) on project service: Unknown archiver

Re: maven-dependency-plugin unpacking aar format?

2014-07-21 Thread Dan Tran
this may help http://stackoverflow.com/questions/15393110/maven-custom-archive-extension-how-do-i-use-unpack-dependencies On Mon, Jul 21, 2014 at 2:05 PM, Karl Heinz Marbaise khmarba...@gmx.de wrote: HI David, I'm getting the following error trying to unpack some files from an aar. Is

Re: maven-dependency-plugin unpacking aar format?

2014-07-21 Thread David Hoffer
Here is a simplified project showing my use-case, I hope this helps. Note I'm using unpack-dependencies as the aar is a module in the same project; however I assume the same problem exists with unpack, if that's the case that would make the test project even simpler. ?xml version=1.0

Re: maven-dependency-plugin unpacking aar format?

2014-07-21 Thread William Ferguson
David, what the use case for unpacking the AAR? William On Tue, Jul 22, 2014 at 7:27 AM, David Hoffer dhoff...@gmail.com wrote: Here is a simplified project showing my use-case, I hope this helps. Note I'm using unpack-dependencies as the aar is a module in the same project; however I

Re: maven-dependency-plugin unpacking aar format?

2014-07-21 Thread David Hoffer
It has resources specified by the includes that are needed by a different sub-system of the build. Some are in jars but lots are in aars too. includesMETA-INF/*.wsdl,META-INF/schema/**/*.xsd/includes On Mon, Jul 21, 2014 at 3:56 PM, William Ferguson william.fergu...@xandar.com.au wrote:

RE: maven-dependency-plugin unpacking aar format?

2014-07-21 Thread Martin Gainty
(XMLStreamException e) { throw new DeploymentException(e); } return null; } does this answer your question? Martin __ Date: Tue, 22 Jul 2014 07:56:55 +1000 Subject: Re: maven-dependency-plugin unpacking aar format? From: william.fergu...@xandar.com.au

Re: maven-dependency-plugin unpacking aar format?

2014-07-21 Thread William Ferguson
DeploymentException(e); } catch (XMLStreamException e) { throw new DeploymentException(e); } return null; } does this answer your question? Martin __ Date: Tue, 22 Jul 2014 07:56:55 +1000 Subject: Re: maven-dependency-plugin unpacking aar format

Pack with native tar, unpack with maven-dependency-plugin failure

2014-06-02 Thread Dan Tran
Hi I have a number of tar.gz artifacts packed with cygwin/linux tar, but maven-dependency-plugin fails to unpack with with the following error ( have you seen this) Caused by: java.util.zip.ZipException: Not in GZIP format at java.util.zip.GZIPInputStream.readHeader(GZIPInputStream.java:164

Re: Pack with native tar, unpack with maven-dependency-plugin failure

2014-06-02 Thread Alexander Kriegisch
-dependency-plugin fails to unpack with with the following error ( have you seen this) Caused by: java.util.zip.ZipException: Not in GZIP format at java.util.zip.GZIPInputStream.readHeader(GZIPInputStream.java:164) at java.util.zip.GZIPInputStream.init(GZIPInputStream.java:78

Re: Pack with native tar, unpack with maven-dependency-plugin failure

2014-06-02 Thread Dan Tran
On Mon, Jun 2, 2014 at 11:47 AM, Dan Tran dant...@gmail.com wrote: Hi I have a number of tar.gz artifacts packed with cygwin/linux tar, but maven-dependency-plugin fails to unpack with with the following error ( have you seen this) Caused by: java.util.zip.ZipException: Not in GZIP format

Re: Pack with native tar, unpack with maven-dependency-plugin failure

2014-06-02 Thread Jörg Schaible
Hi Dan, Dan Tran wrote: I found the root cause of this issue where I need to force a '-z' option during native tar compression. Without this flag, the output is just a normal tar file where native tar is very smart to figure this out. Where are plexus-archiver only looks for gz signature

Maven dependency plugin - stripClassifier

2014-05-26 Thread DenisDasKind
Hi to all, i have the following trouble when using the maven dependency plugin, and especially the unpack-dependencies. I have 3 different dependencies test1, test2, and tes3, and i would like to unpack each dependency into separate folder as example into test1, test2, etc. Therefor i use

[ANN] Maven Dependency Plugin 2.8 Released

2013-05-18 Thread Hervé Boutemy
The Apache Maven team is pleased to announce the release of the Maven Dependency Plugin, version 2.8 The dependency plugin provides the capability to manipulate artifacts. It can copy and/or unpack artifacts from local or remote repositories to a specified location. http://maven.apache.org

Re: maven-dependency-plugin purge proper usage

2013-05-12 Thread Graham Leggett
On 12 May 2013, at 2:47 AM, Joe Osowski joe.osow...@gmail.com wrote: Yes, you are correct. However, the problem with release/snapshots is that maven assumes a revision in the VCS is a release. But in reality, a release is the binary built by maven. A release is never just the binary built

maven-dependency-plugin purge proper usage

2013-05-11 Thread Joe Osowski
/ambra-base/2.6.3/ambra-base-2.6.3.pom (16 KB at 128.9 KB/sec) Downloading: http://maven.ambraproject.org/ma….. ... [INFO] --- maven-clean-plugin:2.3:clean (default-clean) @ ambra-admin --- [INFO] [INFO] --- maven-dependency-plugin:2.7:purge-local-repository (purge-local-dependencies) @ ambra

Re: maven-dependency-plugin purge proper usage

2013-05-11 Thread Wayne Fay
) @ ambra-admin --- [INFO] [INFO] --- maven-dependency-plugin:2.7:purge-local-repository (purge-local-dependencies) @ ambra-admin --- [WARNING] Unable to purge local repository location: /home/josowski/.m2/repository/org/ambraproject ... Oddly, I don't see the same behavior on my Mac, only

Re: maven-dependency-plugin purge proper usage

2013-05-11 Thread Joe Osowski
--- [INFO] [INFO] --- maven-dependency-plugin:2.7:purge-local-repository (purge-local-dependencies) @ ambra-admin --- [WARNING] Unable to purge local repository location: /home/josowski/.m2/repository/org/ambraproject ... Oddly, I don't see the same behavior on my Mac, only on Ubuntu

Re: maven-dependency-plugin purge proper usage

2013-05-11 Thread Graham Leggett
On 11 May 2013, at 10:17 PM, Joe Osowski joe.osow...@gmail.com wrote: the build to make sure the latest dependencies are downloaded, as we sometimes change the non snapshot released binaries on our local maven repository. You do realize that this is a really bad idea, and it will

Re: maven-dependency-plugin purge proper usage

2013-05-11 Thread Joe Osowski
Yes, you are correct. However, the problem with release/snapshots is that maven assumes a revision in the VCS is a release. But in reality, a release is the binary built by maven. Using snapshots with multiple snapshot dependencies introduces changes at release time that a release engineer

Re: maven-dependency-plugin

2013-03-21 Thread virg g
and wars. My Build structure is parent POM has all modules. I am placing all my plugins in PARENT POM to be required to to applied all child modules. My requirement is to copy all these created jars to one location and wars to another location. I am using maven-dependency

Re: maven-dependency-plugin

2013-03-21 Thread virg g
is to copy all these created jars to one location and wars to another location. I am using maven-dependency-plugin to do this. This is sample plugin. I have two issues with this. 1. I am able to copy all the jars and wars to one folder, but not jars to one folder and wars

maven-dependency-plugin

2013-03-19 Thread virg g
location. I am using maven-dependency-plugin to do this. This is sample plugin. I have two issues with this. 1. I am able to copy all the jars and wars to one folder, but not jars to one folder and wars to another. Not able to distinguish 2. SInce i have placed this plugin in parent, along

Re: maven-dependency-plugin

2013-03-19 Thread Adrien Rivard
all modules. I am placing all my plugins in PARENT POM to be required to to applied all child modules. My requirement is to copy all these created jars to one location and wars to another location. I am using maven-dependency-plugin to do this. This is sample plugin. I have two issues

RE: maven-dependency-plugin

2013-03-19 Thread Martin Gainty
manipulation, nous ne pouvons accepter aucune responsabilité pour le contenu fourni. Date: Tue, 19 Mar 2013 12:35:04 +0100 Subject: Re: maven-dependency-plugin From: adrien.riv...@gmail.com To: users@maven.apache.org Hi, Have you try to add two differents executions (with differents id), one

Re: maven-dependency-plugin

2013-03-19 Thread virg g
modules. I am placing all my plugins in PARENT POM to be required to to applied all child modules. My requirement is to copy all these created jars to one location and wars to another location. I am using maven-dependency-plugin to do this. This is sample plugin. I have two issues with this. 1

Re: maven-dependency-plugin

2013-03-19 Thread Ron Wheeler
to be required to to applied all child modules. My requirement is to copy all these created jars to one location and wars to another location. I am using maven-dependency-plugin to do this. This is sample plugin. I have two issues with this. 1. I am able to copy all the jars and wars to one folder

Re: maven-dependency-plugin

2013-03-19 Thread Adrien Rivard
requirement is to copy all these created jars to one location and wars to another location. I am using maven-dependency-plugin to do this. This is sample plugin. I have two issues with this. 1. I am able to copy all the jars and wars to one folder, but not jars to one folder and wars

[ANN] Maven Dependency Plugin 2.7 Released

2013-03-13 Thread John Casey
The Apache Maven team is pleased to announce the release of the Maven Dependency Plugin, version 2.7 The dependency plugin provides the capability to manipulate artifacts. It can copy and/or unpack artifacts from local or remote repositories to a specified location. http://maven.apache.org

[ANN] Maven Dependency Plugin 2.6 Released

2012-11-26 Thread Arnaud HERITIER
The Apache Maven team is pleased to announce the release of the Maven Dependency Plugin, version 2.6 The dependency plugin provides the capability to manipulate artifacts. It can copy and/or unpack artifacts from local or remote repositories to a specified location. http://maven.apache.org

Maven dependency plugin does not respect mirror configuration

2012-11-05 Thread Polani, Jyothi P
Hello users, I have a sample project in my environment, where in I do not have direct access to central repo but through mirror (nexus). It has not been a problem while downloading the artifacts, however while generating the dependencies report (mvn site), it does not look at my mirror, but

Maven-dependency-plugin CL

2012-09-09 Thread Martin Gainty
Gentlemen..given this simple execution of maven-bundle-plugin plugin groupIdorg.apache.felix/groupId artifactIdmaven-bundle-plugin/artifactId version2.2.0/version extensionstrue/extensions configuration

[ANN] Maven Dependency Plugin 2.5.1 Released

2012-08-27 Thread Olivier Lamy
Hi, The Apache Maven team is pleased to announce the release of the Maven Dependency Plugin, version 2.5.1 The dependency plugin provides the capability to manipulate artifacts. It can copy and/or unpack artifacts from local or remote repositories to a specified location. http://maven.apache.org

maven-dependency-plugin 2.5 no longer honors excludes property

2012-08-13 Thread Laird Nelson
I think that I've noticed that the Maven dependency plugin's excludes property (for the unpack goal) is no longer honored. Before I file a bug, is this a known issue? If all I do is change the version of the plugin from 2.5 to 2.4 its output changes to reflect the specified excludes. Best,

Re: maven-dependency-plugin 2.5 no longer honors excludes property

2012-08-13 Thread Laird Nelson
On Mon, Aug 13, 2012 at 10:41 AM, Laird Nelson ljnel...@gmail.com wrote: Before I file a bug, is this a known issue? I see that it is: http://jira.codehaus.org/browse/MDEP-365 Best, Laird -- http://about.me/lairdnelson

Re: maven-dependency-plugin 2.5 no longer honors excludes property

2012-08-13 Thread Ansgar Konermann
Shouldn't there be an IT to catch this kind of regression? Am 13.08.2012 19:41 schrieb Laird Nelson ljnel...@gmail.com: I think that I've noticed that the Maven dependency plugin's excludes property (for the unpack goal) is no longer honored. Before I file a bug, is this a known issue? If

[ANN] Maven Dependency Plugin 2.5 Released

2012-08-05 Thread Hervé Boutemy
The Maven team is pleased to announce the release of the Maven Dependency Plugin, version 2.5 The dependency plugin provides the capability to manipulate artifacts. It can copy and/or unpack artifacts from local or remote repositories to a specified location. http://maven.apache.org/plugins

Re: maven dependency plugin and maven 3

2012-06-04 Thread Stephen Connolly
, sorry to bump ... :-( but I'm still having issues understanding what's wrong with the maven dependency plugin and maven 3... I attached a pom to demonstrate the problem : Using maven 3, 1) do a mvn package 2) then do a mvn org.apache.maven.plugins:maven-dependency-plugin:2.4:purge

RE: maven dependency plugin and maven 3

2012-06-04 Thread Tim Wu T
is Confidential. We only send and receive email on the basis of the terms set out at www.ericsson.com/email_disclaimer -Original Message- From: Stephen Connolly [mailto:stephen.alan.conno...@gmail.com] Sent: Monday, June 04, 2012 4:10 PM To: Maven Users List Subject: Re: maven dependency plugin

Re: maven dependency plugin and maven 3

2012-06-04 Thread Anders Hammar
send and receive email on the basis of the terms set out at www.ericsson.com/email_disclaimer -Original Message- From: Stephen Connolly [mailto:stephen.alan.conno...@gmail.com] Sent: Monday, June 04, 2012 4:10 PM To: Maven Users List Subject: Re: maven dependency plugin and maven 3

RE: maven dependency plugin and maven 3

2012-06-04 Thread Tim Wu T
at www.ericsson.com/email_disclaimer -Original Message- From: anders.g.ham...@gmail.com [mailto:anders.g.ham...@gmail.com] On Behalf Of Anders Hammar Sent: Monday, June 04, 2012 5:24 PM To: Maven Users List Subject: Re: maven dependency plugin and maven 3 Please don't hijack someone

Re: maven dependency plugin and maven 3

2012-06-04 Thread Anthony Dahanne
[INFO] Scanning for projects... [INFO] [INFO] [INFO] Building pof 1.0.0-SNAPSHOT [INFO] [INFO] [INFO] --- maven-dependency-plugin:2.4:purge-local

Re: maven dependency plugin and maven 3

2012-06-04 Thread Wayne Fay
[WARNING] Missing POM for javax.servlet:servlet-api:jar:2.5 [WARNING] Missing POM for net.dahanne.gallery:commons-gallery:jar:2.1.0-SNAPSHOT even though those 2 artifacts are existing in my local repo. Have you looked at the content of those pom files to ensure they aren't corrupted? Wayne

Re: maven dependency plugin and maven 3

2012-06-04 Thread Anthony Dahanne
Hi Wayne, you are right, running the purge corrupted my local repo in a way : $ ls ~/.m2/repository/javax/servlet/servlet-api/2.5/ _maven.repositories servlet-api-2.5.jar servlet-api-2.5.jar.lastUpdated servlet-api-2.5.jar.sha1 and if I run mvn clean install just after , everything

Fwd: maven dependency plugin and maven 3

2012-06-03 Thread Anthony Dahanne
Hello all, sorry to bump ... :-( but I'm still having issues understanding what's wrong with the maven dependency plugin and maven 3... I attached a pom to demonstrate the problem : Using maven 3, 1) do a mvn package 2) then do a mvn org.apache.maven.plugins:maven-dependency-plugin:2.4:purge

Re: maven dependency plugin and maven 3

2012-06-03 Thread Jason van Zyl
... :-( but I'm still having issues understanding what's wrong with the maven dependency plugin and maven 3... I attached a pom to demonstrate the problem : Using maven 3, 1) do a mvn package 2) then do a mvn org.apache.maven.plugins:maven-dependency-plugin:2.4:purge-local-repository -Dverbose=true

maven dependency plugin and maven 3

2012-05-31 Thread Anthony Dahanne
Hello all, I'm only using maven 3 on my machine (be it command line or m2e). I tried to use the maven dependency plugin on a project, mvn org.apache.maven.plugins:maven-dependency-plugin:2.4:purge-local-repository -Dverbose=true -DresolutionFuzziness=version and it printed such warnings

[ANN] Maven Dependency Plugin 2.4 Released

2011-12-05 Thread Carlos Sanchez
The Maven team is pleased to announce the release of the Maven Dependency Plugin, version 2.4 Provides utility goals to work with dependencies like copying, unpacking, analyzing, resolving and many more. http://maven.apache.org/plugins/maven-dependency-plugin You should specify the version

maven-dependency-plugin fails when using maven's multi-thread feature

2011-11-21 Thread tarand
reactor, it happens that the dependent artifact has not been built before, and we encounter an artifact-not-found error. Is that a know issue with the threading feature, or do we make a mistake? -- View this message in context: http://maven.40175.n5.nabble.com/maven-dependency-plugin-fails-when-using

Re: maven-dependency-plugin fails when using maven's multi-thread feature

2011-11-21 Thread Stephen Connolly
encounter an artifact-not-found error. Is that a know issue with the threading feature, or do we make a mistake? -- View this message in context: http://maven.40175.n5.nabble.com/maven-dependency-plugin-fails-when-using-maven-s-multi-thread-feature-tp5009857p5009857.html Sent from the Maven

Re: maven-dependency-plugin fails when using maven's multi-thread feature

2011-11-21 Thread tarand
Sure, this works. But please note: we have many, many usages of this usage style of the dependency plugin. Thus it is hard work to change each and every location. We would like to avoid that. -- View this message in context: http://maven.40175.n5.nabble.com/maven-dependency-plugin-fails-when

Re: maven-dependency-plugin fails when using maven's multi-thread feature

2011-11-21 Thread Stephen Connolly
that. -- View this message in context: http://maven.40175.n5.nabble.com/maven-dependency-plugin-fails-when-using-maven-s-multi-thread-feature-tp5009857p5010376.html Sent from the Maven - Users mailing list archive at Nabble.com

Re: maven-dependency-plugin fails when using maven's multi-thread feature

2011-11-21 Thread Stephen Connolly
style of the dependency plugin. Thus it is hard work to change each and every location. We would like to avoid that. -- View this message in context: http://maven.40175.n5.nabble.com/maven-dependency-plugin-fails-when-using-maven-s-multi-thread-feature-tp5009857p5010376.html Sent from

Unpack specific folder from artifact - maven-dependency-plugin

2011-11-03 Thread motes motes
During build I would like to unpack a specific folder from a dependency to my project. The structure of the project/artifact containing the folder is: com.resources |- root | - subfolder | - test.txt |- some-other-folder |- pom.xml and its pom: build

Re: Unpack specific folder from artifact - maven-dependency-plugin

2011-11-03 Thread motes motes
changing to: build resources resource directory${basedir}/directory /resource /resources /build works. But when I unpack the folder I only wants its content. I have

Re: exclude a list of groupId:artifactId using maven-dependency-plugin

2011-09-12 Thread cowwoc
-maven-dependency-plugin-tp4762053p4795458.html Sent from the Maven - Users mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-unsubscr...@maven.apache.org For additional commands, e-mail: users-h

exclude a list of groupId:artifactId using maven-dependency-plugin

2011-09-02 Thread Jane Young
Hi, Is there a way to exclude a comma separated list of groupId:artifactId using maven-dependency-plugin:copy-dependencies? The reason I'm asking this is that there are identical artifactIds but with different groupIds in the dependency tree and I want to distinguish the artifactId to

[ANN] Maven Dependency Plugin 2.3 Released

2011-07-11 Thread Stephen Connolly
The Maven team is pleased to announce the release of the Maven Dependency Plugin, version 2.3 This plugin is used to copy and unpack artifacts and dependencies. It also provides visualization and optimization tools for your project dependencies. http://maven.apache.org/plugins/maven-dependency

Re: why I love the maven-dependency plugin

2011-05-18 Thread Brian Fox
On Tue, May 17, 2011 at 3:50 PM, Russ Tremain ru...@releasetools.org wrote: I use the maven-dependency plugin for jar and war packaging. It is flexible and non-judgmental. This is particularly important when you are converting a large project over to maven and cannot follow some maven

why I love the maven-dependency plugin

2011-05-17 Thread Russ Tremain
I use the maven-dependency plugin for jar and war packaging. It is flexible and non-judgmental. This is particularly important when you are converting a large project over to maven and cannot follow some maven conventions - you may be constrained to recreate identical or near-identical

Re: maven-dependency-plugin uses target dir instead of artifacts from repository

2011-04-11 Thread Brian Fox
for this is MDEP-291. /Anders On Fri, Apr 8, 2011 at 09:28, Lucas Persson lucas.pers...@oracle.com lucas.pers...@oracle.comwrote: Hi I have some issues with the maven-dependency-plugin vers 2.2 under Maven3. In one project I uses the plugin to unpack a sources artifact like this: plugin

Re: maven-dependency-plugin uses target dir instead of artifacts from repository

2011-04-10 Thread Lucas Persson
ome issues with the maven-dependency-plugin vers 2.2 under Maven3. In one project I uses the plugin to unpack a sources artifact like this: plugin groupIdorg.apache.maven.plugins/groupId artifactIdmaven-dependency-plugin/artifactId executions execution

maven-dependency-plugin uses target dir instead of artifacts from repository

2011-04-08 Thread Lucas Persson
Hi I have some issues with the maven-dependency-plugin vers 2.2 under Maven3. In one project I uses the plugin to unpack a sources artifact like this: plugin groupIdorg.apache.maven.plugins

<    1   2   3   4   5   >