Re: Bug report - maven shade plugin - transitive dependencies of provided dependency included in uber-jar

2023-02-09 Thread Petr Široký
provided org.apache.spark spark-parent_2.12 2.4.8 pom import You are specifying a provided scope for spark-core_2.12, and at the same time changing the scope for some of its transitive dependencies when importing the dependencyManagement from the

Re: Bug report - maven shade plugin - transitive dependencies of provided dependency included in uber-jar

2023-02-08 Thread Pavel Horal
2023 at 07:52, Adam Cervenka (ZA) wrote: > Hello, > > I would like to report a bug. > > I declared a dependency as provided, but the shade plugin still includes > its transitive dependencies in the uber-jar. > > To demonstrate the issue, I created following repository: >

Bug report - maven shade plugin - transitive dependencies of provided dependency included in uber-jar

2023-02-08 Thread Adam Cervenka (ZA)
Hello, I would like to report a bug. I declared a dependency as provided, but the shade plugin still includes its transitive dependencies in the uber-jar. To demonstrate the issue, I created following repository: https://github.com/cerveada/shade-plugin-issue Using the poms and instructions

Test scope and transitive dependencies in compile scope

2022-03-14 Thread Slawomir Jaranowski
Hi, We have open issue MDEP-791 [1] for maven dependency plugin There are also connected issues for Maven core MNG-6058 [2] and probably others. Do we have any idea how this should be resolved ... fix in m-dependency-p or in Maven core? I'm afraid that even if we fix in core ... we should have s

Re: Maven plugin development: Getting a Set<Artifact> of an declared and transitive dependencies

2018-07-16 Thread exabrial
Thank you Robert! That fixed the issue with getArticats(). I didn't see that option beforehand. On 2018/07/16 19:44:36, "Robert Scholte" wrote: > See > https://maven.apache.org/plugin-tools/maven-plugin-tools-annotations/index.html > > if you want the jars, set requiresDependencyResolution

Re: Maven plugin development: Getting a Set of an declared and transitive dependencies

2018-07-16 Thread Robert Scholte
See https://maven.apache.org/plugin-tools/maven-plugin-tools-annotations/index.html if you want the jars, set requiresDependencyResolution thanks, Robert On Mon, 16 Jul 2018 21:40:18 +0200, Romain Manni-Bucau wrote: Hi, GetArtifacts should work if you run it in the right phase. Le lun

Re: Maven plugin development: Getting a Set of an declared and transitive dependencies

2018-07-16 Thread Romain Manni-Bucau
Hi, GetArtifacts should work if you run it in the right phase. Le lun. 16 juil. 2018 21:19, exabr...@gmail.com a écrit : > Hey guys, > > Right now, I'm doing the following: > > ``` > ... > @Inject > private ProjectDependenciesResolver projectDependenciesResolver; > ... > final List scopes

Maven plugin development: Getting a Set of an declared and transitive dependencies

2018-07-16 Thread exabrial
Hey guys, Right now, I'm doing the following: ``` ... @Inject private ProjectDependenciesResolver projectDependenciesResolver; ... final List scopes = Arrays.asList(new String[] { "compile", "runtime", "test" }); final Set artifacts = projectDependenciesResolver.resolve(mavenProject, sc

Re: Get licenses of transitive dependencies

2016-04-23 Thread Karl Heinz Marbaise
Hi, you now that something like.. http://www.mojohaus.org/license-maven-plugin/index.html already exists ? On 4/23/16 5:04 AM, Michael Spiegel wrote: Hello everyone, Apologies if this is the wrong venue for this question. I'm trying to retrieve the licenses for all the trans

Re: Get licenses of transitive dependencies

2016-04-23 Thread Anton Tanasenko
:00 Michael Spiegel : > Hello everyone, > > Apologies if this is the wrong venue for this question. I'm trying to > retrieve the licenses for all the transitive dependencies for maven > projects. I'm currently using the MavenProject#getArtifacts() API and then > for

Get licenses of transitive dependencies

2016-04-23 Thread Michael Spiegel
Hello everyone, Apologies if this is the wrong venue for this question. I'm trying to retrieve the licenses for all the transitive dependencies for maven projects. I'm currently using the MavenProject#getArtifacts() API and then for each Artifact I am using the ProjectBuilder to build

Re: Resolving transitive dependencies in a mojo

2009-12-07 Thread Dan Tran
use this link as example http://svn.codehaus.org/mojo/tags/dita-maven-plugin-1.0-beta-1/src/main/java/org/codehaus/mojo/dita/AbstractDitaMojo.java -Dan 2009/12/7 Barış Erdemir : > Hello, > I am trying to resolve transitive dependencies of my project. I need a list > of all dependenci

Resolving transitive dependencies in a mojo

2009-12-07 Thread Barış Erdemir
Hello, I am trying to resolve transitive dependencies of my project. I need a list of all dependencies. I am using : /** * @parameter expression="${dependencies}" default-value="${project.dependencies}" */

Re: Copy transitive dependencies

2009-07-09 Thread Costin Caraivan
I need to download the transitive dependencies of the project's depencies, each into their own folder, like this: A's dependencies - I - II - III I's dependencies - 1 - 2 II's dependencies - 3 - 4 Copy from the repo the dependencies in the following folder structure: I - 1 - 2

Re: Copy transitive dependencies

2009-07-07 Thread Brian Fox
se: > project.getDependencyArtifacts() > > Hope this helps, > SaM > > On Wed, Jul 8, 2009 at 2:28 AM, Costin Caraivan wrote: >> >> Hello, >> >> I have a plugin which needs to download & copy somewhere the transitive >> dependencies of the project

Re: Copy transitive dependencies

2009-07-07 Thread Samuel Le Berrigaud
Caraivan wrote: > > Hello, > > I have a plugin which needs to download & copy somewhere the transitive > dependencies of the project's dependencies (at least level 1, I'll see about > the rest). > So I have this: project -> dependencies -> transitive dependenc

Copy transitive dependencies

2009-07-07 Thread Costin Caraivan
Hello, I have a plugin which needs to download & copy somewhere the transitive dependencies of the project's dependencies (at least level 1, I'll see about the rest). So I have this: project -> dependencies -> transitive dependencies. I extracted artifacts from the direct d

Re: Unneeded transitive dependencies?

2009-02-24 Thread Brett Porter
//www.nabble.com/Unneeded-transitive-dependencies--tp22188659p22190267.html Sent from the Maven Developers mailing list archive at Nabble.com. - To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org For additional commands, e-mail:

Re: Unneeded transitive dependencies?

2009-02-24 Thread Abel Muiño
ibe, e-mail: dev-unsubscr...@maven.apache.org > For additional commands, e-mail: dev-h...@maven.apache.org > > > - http://www.linkedin.com/in/amuino Abel Muiño Vizcaino - http://ramblingabout.wordpress.com http://ramblingabout.wordpress.com -- View this messa

Re: Unneeded transitive dependencies?

2009-02-24 Thread Igor Fedorenko
Abel, As far as I know, PlexusTestCase is part of plexus container API at the moment, so at least technically junit dependency is needed. Abel Muiño wrote: I have run dependency:tree on a pom with the maven embedder (SNAPSHOT) as the only dependency. I'm using several repositories so all the

Unneeded transitive dependencies?

2009-02-24 Thread Abel Muiño
caino - http://ramblingabout.wordpress.com http://ramblingabout.wordpress.com -- View this message in context: http://www.nabble.com/Unneeded-transitive-dependencies--tp22188659p22188659.html Sent from the Maven Developers mailing list archiv

Re: transitive dependencies, step by step

2007-08-07 Thread Jan Van Besien
Kenney Westerhof wrote: You can use this project [1] to get the proper relationships. Thanks, this already helps me a lot further. AFAIK the plan is to use [1] in maven itself (in 2.1) so that all mojo's will have access to a consistent set of dependency relationships. It would be better thou

Re: transitive dependencies, step by step

2007-08-07 Thread Kenney Westerhof
lugin for which I need to be able to navigate over the dependencies (and transitive dependencies) of a project. I manage to get all dependencies, but I don't manage to get dependency relations between those dependencies. I'll try to explain myself with an example. Say we have a proje

transitive dependencies, step by step

2007-08-07 Thread Jan Van Besien
Hi all I'm currently developping a maven plugin for which I need to be able to navigate over the dependencies (and transitive dependencies) of a project. I manage to get all dependencies, but I don't manage to get dependency relations between those dependencies. I'll try to

RE: Problem with Scope of Transitive Dependencies

2007-03-26 Thread Jörg Schaible
Hi Jason, Jason van Zyl wrote on Saturday, March 24, 2007 2:32 PM: [snip] >> 2.) The dao-impl Module depends on Hibernate, but Libraries that >> are used by Hibernate (e.g. cglib, asm and antlr) shall not be used >> directly in the dao-impl Module but shall only be used at runtime of >> tests.

Re: Problem with Scope of Transitive Dependencies

2007-03-24 Thread Jason van Zyl
't be available in 2.0.x. Jason. -Ursprüngliche Nachricht- Von: "Maven Developers List" Gesendet: 23.03.07 14:20:06 An: "Maven Developers List" Betreff: Re: Problem with Scope of Transitive Dependencies On 23 Mar 07, at 7:18 AM 23 Mar 07, Thomas R. wrote:

Re: Problem with Scope of Transitive Dependencies

2007-03-24 Thread Thomas R.
"Maven Developers List" > Betreff: Re: Problem with Scope of Transitive Dependencies > > On 23 Mar 07, at 7:18 AM 23 Mar 07, Thomas R. wrote: > > > Hello, > > > > we are developing a very large project with a layered architecture. > > We decided to use Maven

Re: Problem with Scope of Transitive Dependencies

2007-03-23 Thread Jason van Zyl
On 23 Mar 07, at 7:18 AM 23 Mar 07, Thomas R. wrote: Hello, we are developing a very large project with a layered architecture. We decided to use Maven (Version 2.0.4) in order to have a good dependency-management. We are now facing the following problem with transitive dependencies

Problem with Scope of Transitive Dependencies

2007-03-23 Thread Thomas R.
Hello, we are developing a very large project with a layered architecture. We decided to use Maven (Version 2.0.4) in order to have a good dependency-management. We are now facing the following problem with transitive dependencies: Consider following (simplified) example: We have a module DAO

Re: War plugin overlays: New plugin to handle transitive dependencies

2007-01-17 Thread BenTatham
need certain include and exclude > patterns. > > > -- View this message in context: http://www.nabble.com/War-plugin-overlays%3A-New-plugin-to-handle-transitive-dependencies-tf2612629s177.html#a8412448 Sent from the Maven Developers mailing list archive at Nabble.com.

RE: [appfuse-dev] War plugin overlays: New plugin to handle transitive dependencies

2006-11-15 Thread Brian E. Fox
Message- From: Michael Horwitz [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 15, 2006 9:31 AM To: Maven Developers List Cc: [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: Re: [appfuse-dev] War plugin overlays: New plugin to handle transitive dependencies It would be nice! In AppFuse only one wa

Re: [appfuse-dev] War plugin overlays: New plugin to handle transitive dependencies

2006-11-15 Thread Michael Horwitz
dependencies are resolved isn't it? -Original Message- From: Matt Raible [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 14, 2006 1:56 PM To: [EMAIL PROTECTED] Cc: dev@maven.apache.org Subject: Re: [appfuse-dev] War plugin overlays: New plugin to handle transitive dependencies

RE: [appfuse-dev] War plugin overlays: New plugin to handle transitive dependencies

2006-11-15 Thread Brian E. Fox
6 PM To: [EMAIL PROTECTED] Cc: dev@maven.apache.org Subject: Re: [appfuse-dev] War plugin overlays: New plugin to handle transitive dependencies Just some thoughts on enhancements: It'd be nice if we could 1) get this into the war plugin and 2) add 3 different modes: 1. Default - the way t

Re: [appfuse-dev] War plugin overlays: New plugin to handle transitive dependencies

2006-11-14 Thread Mark Struberg
make heavy use of the war > overlay feature in the Maven > > war plugin. It is a really nifty feature! > > > > To get max power with war overlays I have > developed the Warpath plugin that > > allows projects to use war artifacts as fully > fledged dependencies.

Re: [appfuse-dev] War plugin overlays: New plugin to handle transitive dependencies

2006-11-14 Thread Matt Raible
the war dependency artifacts can be included in the project's classpath for normal compile, etc tasks. 2) Transitive dependencies from the war dependency artifacts become available for use by other plugins, e.g. compile and ear - so no more having to include all the dependencies when creating skinn

RE: War plugin overlays: New plugin to handle transitive dependencies

2006-11-11 Thread Brian E. Fox
projects to use war artifacts as fully fledged dependencies. In brief: 1) The contents of the /WEB-INF/classes directory in the war dependency artifacts can be included in the project's classpath for normal compile, etc tasks. 2) Transitive dependencies from the war dependency artifacts b

War plugin overlays: New plugin to handle transitive dependencies

2006-11-11 Thread Michael Horwitz
use war artifacts as fully fledged dependencies. In brief: 1) The contents of the /WEB-INF/classes directory in the war dependency artifacts can be included in the project's classpath for normal compile, etc tasks. 2) Transitive dependencies from the war dependency artifacts become available fo

Re: m2eclipse and transitive dependencies

2006-08-17 Thread Joerg Hohwiller
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Graham Leggett wrote: > Hi all, Hi, > > Do transitive dependencies work within m2eclipse v0.0.9? They do work for me. I have quite a lot of projects with many dependencies. > In the case > where eclipse project A depends on eclipse

m2eclipse and transitive dependencies

2006-08-14 Thread Graham Leggett
Hi all, Do transitive dependencies work within m2eclipse v0.0.9? In the case where eclipse project A depends on eclipse project B, and eclipse project B has a dependency on foo.jar, foo.jar is not made available to eclipse project A, and the build fails. There also seems to be no way of

Building Eclipse/OSGi bundles with Maven 2: why requiresDependencyResolution always resolves transitive dependencies?

2006-06-09 Thread Štěpán Roh
s with the exception that transitive dependencies lose this unbundled file after dependency resolution which unfortunately happens during compilation. I think little picture will be better: eclipse-plugin A, file plugin.a.jar eclipse-plugin B, file plugin.b.jar, depends on A eclipse-plugin C, to b

[jira] Updated: (MNG-1944) cyclic dependencies causes maven to not include all transitive dependencies

2006-02-16 Thread John Casey (JIRA)
[ http://jira.codehaus.org/browse/MNG-1944?page=all ] John Casey updated MNG-1944: Fix Version: (was: 2.0.3) 2.0.4 > cyclic dependencies causes maven to not include all transitive dependenc

[jira] Updated: (MNG-1991) Can't get transitive dependencies from a war pom when this war is added as a depdency of a project

2006-02-16 Thread John Casey (JIRA)
[ http://jira.codehaus.org/browse/MNG-1991?page=all ] John Casey updated MNG-1991: Fix Version: (was: 2.0.3) 2.0.4 > Can't get transitive dependencies from a war pom when this war is added as a > depdency o

[jira] Updated: (MNG-1388) Transitive Dependencies not used even when set to compile scope

2006-02-16 Thread John Casey (JIRA)
[ http://jira.codehaus.org/browse/MNG-1388?page=all ] John Casey updated MNG-1388: Fix Version: (was: 2.0.3) 2.0.4 > Transitive Dependencies not used even when set to compile sc

[jira] Closed: (MNG-2035) Add transitive dependencies with test scope when depending on a test-jar type dependency

2006-02-03 Thread Brett Porter (JIRA)
[ http://jira.codehaus.org/browse/MNG-2035?page=all ] Brett Porter closed MNG-2035: - Assign To: Brett Porter Resolution: Duplicate Fix Version: (was: 2.1) > Add transitive dependencies with test scope when depending on a test-jar t

Re: [jira] Created: (MNG-2035) Add transitive dependencies with test scope when depending on a test-jar type dependency

2006-02-03 Thread Grzegorz Slowikowski
Carlos Sanchez (JIRA)" <[EMAIL PROTECTED]> To: Sent: Friday, February 03, 2006 8:58 PM Subject: [jira] Created: (MNG-2035) Add transitive dependencies with test scope when depending on a test-jar type dependency Add transitive dependencies with test scope when

[jira] Updated: (MNG-2035) Add transitive dependencies with test scope when depending on a test-jar type dependency

2006-02-03 Thread Vincent Massol (JIRA)
[ http://jira.codehaus.org/browse/MNG-2035?page=all ] Vincent Massol updated MNG-2035: Comment: was deleted > Add transitive dependencies with test scope when depending on a test-jar type > depe

[jira] Commented: (MNG-2035) Add transitive dependencies with test scope when depending on a test-jar type dependency

2006-02-03 Thread Carlos Sanchez (JIRA)
[ http://jira.codehaus.org/browse/MNG-2035?page=comments#action_57789 ] Carlos Sanchez commented on MNG-2035: - test > Add transitive dependencies with test scope when depending on a test-jar type > depe

[jira] Updated: (MNG-2035) Add transitive dependencies with test scope when depending on a test-jar type dependency

2006-02-03 Thread Carlos Sanchez (JIRA)
[ http://jira.codehaus.org/browse/MNG-2035?page=all ] Carlos Sanchez updated MNG-2035: Fix Version: 2.1 > Add transitive dependencies with test scope when depending on a test-jar type > depe

[jira] Created: (MNG-2035) Add transitive dependencies with test scope when depending on a test-jar type dependency

2006-02-03 Thread Carlos Sanchez (JIRA)
Add transitive dependencies with test scope when depending on a test-jar type dependency Key: MNG-2035 URL: http://jira.codehaus.org/browse/MNG-2035 Project: Maven 2 Type: New

[jira] Created: (MNG-2031) Easily disable / exclude transitive dependencies

2006-02-02 Thread Guillaume Nodet (JIRA)
Easily disable / exclude transitive dependencies Key: MNG-2031 URL: http://jira.codehaus.org/browse/MNG-2031 Project: Maven 2 Type: New Feature Components: Dependencies Versions: 2.0.2 Reporter

[jira] Commented: (MNG-1978) "Provided" scope transitive dependencies required + exclude dependencies for runtime scope only

2006-01-23 Thread David Boden (JIRA)
cies. The point that I'm trying to make is that once you've declared a provided dependency in a sub-module then in all super-modules the scope of the dependency is "at least" provided. It needs to ultimately be there on the runtime classpath for any of the super-modules. > &quo

[jira] Commented: (MNG-1978) "Provided" scope transitive dependencies required + exclude dependencies for runtime scope only

2006-01-22 Thread Brett Porter (JIRA)
[ http://jira.codehaus.org/browse/MNG-1978?page=comments#action_56627 ] Brett Porter commented on MNG-1978: --- moved to docs to document the reason given in the first comment > "Provided" scope transitive dependencies required + exclude dep

[jira] Commented: (MNG-1991) Can't get transitive dependencies from a war pom when this war is added as a depdency of a project

2006-01-22 Thread Emmanuel Venisse (JIRA)
ly, i prefer to use the pom packaging, so you can close this issue if you want > Can't get transitive dependencies from a war pom when this war is added as a > depdency of a project >

[jira] Commented: (MNG-1978) "Provided" scope transitive dependencies required + exclude dependencies for runtime scope only

2006-01-21 Thread John Casey (JIRA)
thing like the core module (if that still exists)? > "Provided" scope transitive dependencies required + exclude dependencies for > runtime scope only > --- > > Key:

[jira] Commented: (MNG-1991) Can't get transitive dependencies from a war pom when this war is added as a depdency of a project

2006-01-19 Thread Brett Porter (JIRA)
[ http://jira.codehaus.org/browse/MNG-1991?page=comments#action_56381 ] Brett Porter commented on MNG-1991: --- this is by design, since the war already includes its dependences. Why do you need them? > Can't get transitive dependencies from a war

[jira] Created: (MNG-1991) Can't get transitive dependencies from a war pom when this war is added as a depdency of a project

2006-01-19 Thread Emmanuel Venisse (JIRA)
Can't get transitive dependencies from a war pom when this war is added as a depdency of a project -- Key: MNG-1991 URL: http://jira.codehaus.org/browse/MNG-1991 Project:

[jira] Updated: (MNG-1978) "Provided" scope transitive dependencies required + exclude dependencies for runtime scope only

2006-01-19 Thread John Casey (JIRA)
[ http://jira.codehaus.org/browse/MNG-1978?page=all ] John Casey updated MNG-1978: Fix Version: documentation > "Provided" scope transitive dependencies required + exclude dependencies for > ru

[jira] Commented: (MNG-1978) "Provided" scope transitive dependencies required + exclude dependencies for runtime scope only

2006-01-19 Thread Brett Porter (JIRA)
[ http://jira.codehaus.org/browse/MNG-1978?page=comments#action_56372 ] Brett Porter commented on MNG-1978: --- if it is for the exclusion from the webapp, then that needs to be a feature of that plugin > "Provided" scope transitive dependen

[jira] Closed: (MNG-1971) Transitive dependencies not following attached tests.

2006-01-19 Thread Brett Porter (JIRA)
[ http://jira.codehaus.org/browse/MNG-1971?page=all ] Brett Porter closed MNG-1971: - Resolution: Duplicate > Transitive dependencies not following attached tests. > - > > K

[jira] Commented: (MNG-1978) "Provided" scope transitive dependencies required + exclude dependencies for runtime scope only

2006-01-19 Thread Stephen Duncan Jr (JIRA)
transitive case? > "Provided" scope transitive dependencies required + exclude dependencies for > runtime scope only > --- > > Key: MNG-1978 > URL: http://jira.

[jira] Updated: (MNG-1978) "Provided" scope transitive dependencies required + exclude dependencies for runtime scope only

2006-01-19 Thread Brett Porter (JIRA)
so cannot assume it is provided. > "Provided" scope transitive dependencies required + exclude dependencies for > runtime scope only > --- > > Key: MNG-1978 >

[jira] Created: (MNG-1978) "Provided" scope transitive dependencies required + exclude dependencies for runtime scope only

2006-01-18 Thread David Boden (JIRA)
"Provided" scope transitive dependencies required + exclude dependencies for runtime scope only --- Key: MNG-1978 URL: http://jira.codehaus.org/browse/MNG-1978 Projec

[jira] Created: (MNG-1977) (Selectively) disable transitive dependencies

2006-01-18 Thread Kees de Kooter (JIRA)
(Selectively) disable transitive dependencies - Key: MNG-1977 URL: http://jira.codehaus.org/browse/MNG-1977 Project: Maven 2 Type: New Feature Components: POM Reporter: Kees de Kooter I depend on some libraries

[jira] Commented: (MNG-1971) Transitive dependencies not following attached tests.

2006-01-17 Thread peter royal (JIRA)
[ http://jira.codehaus.org/browse/MNG-1971?page=comments#action_56139 ] peter royal commented on MNG-1971: -- You're right. I found two such instances, MNG-1378 and MNG-1571 > Transitive dependencies not following attach

[jira] Commented: (MNG-1971) Transitive dependencies not following attached tests.

2006-01-17 Thread Brett Porter (JIRA)
[ http://jira.codehaus.org/browse/MNG-1971?page=comments#action_56124 ] Brett Porter commented on MNG-1971: --- FYI, I'm pretty sure this is already in JIRA somewhere, but I can't be bothered looking for it right now :) > Transitive dep

[jira] Created: (MNG-1971) Transitive dependencies not following attached tests.

2006-01-17 Thread peter royal (JIRA)
Transitive dependencies not following attached tests. - Key: MNG-1971 URL: http://jira.codehaus.org/browse/MNG-1971 Project: Maven 2 Type: Wish Versions: 2.0.1 Reporter: peter royal I followed the

[jira] Updated: (MNG-1944) cyclic dependencies causes maven to not include all transitive dependencies

2006-01-10 Thread Brett Porter (JIRA)
not include all transitive dependencies > --- > > Key: MNG-1944 > URL: http://jira.codehaus.org/browse/MNG-1944 > Project: Maven 2 > Type: Bug > Components: POM > Ver

[jira] Created: (MNG-1944) cyclic dependencies causes maven to not include all transitive dependencies

2006-01-07 Thread Brian Fox (JIRA)
cyclic dependencies causes maven to not include all transitive dependencies --- Key: MNG-1944 URL: http://jira.codehaus.org/browse/MNG-1944 Project: Maven 2 Type: Bug Components: POM

[jira] Closed: (MEV-221) transitive dependencies not being picked up

2005-12-21 Thread Carlos Sanchez (JIRA)
[ http://jira.codehaus.org/browse/MEV-221?page=all ] Carlos Sanchez closed MEV-221: -- Resolution: Cannot Reproduce > transitive dependencies not being picked up > --- > > Key: MEV-221 &g

[jira] Moved: (MEAR-14) Transitive dependencies of War modules should not be copied in the Ear by default

2005-12-19 Thread Jason van Zyl (JIRA)
) Key: MEAR-14 (was: MNG-954) Project: Maven 2.x Ear Plugin (was: Maven 2) > Transitive dependencies of War modules should not be copied in the Ear by > default > - > > Key: MEAR-14

[jira] Created: (MNG-1823) dependencies with classifier mask transitive dependencies of same dependency without classifier

2005-12-13 Thread Jorg Heymans (JIRA)
dependencies with classifier mask transitive dependencies of same dependency without classifier --- Key: MNG-1823 URL: http://jira.codehaus.org/browse/MNG-1823 Project: Maven 2

[jira] Updated: (MNG-1388) Transitive Dependencies not used even when set to compile scope

2005-12-05 Thread John Casey (JIRA)
[ http://jira.codehaus.org/browse/MNG-1388?page=all ] John Casey updated MNG-1388: Fix Version: (was: 2.0.1) 2.0.2 > Transitive Dependencies not used even when set to compile sc

[jira] Commented: (MEV-221) transitive dependencies not being picked up

2005-11-21 Thread Carlos Sanchez (JIRA)
[ http://jira.codehaus.org/browse/MEV-221?page=comments#action_51573 ] Carlos Sanchez commented on MEV-221: Can you post the output of maven with -X option when you compile? > transitive dependencies not being picked

[jira] Commented: (MEV-221) transitive dependencies not being picked up

2005-11-21 Thread Ryan Sonnek (JIRA)
org.springframework.dao.support.DaoSupport file org\springframework\dao\support\DaoSupport.class not found I still need the spring-dao and spring-beans dependencies to build my project. > transitive dependencies not being picked up > --- > >

[jira] Commented: (MEV-221) transitive dependencies not being picked up

2005-11-20 Thread Brett Porter (JIRA)
n the server. Moving to MEV. > transitive dependencies not being picked up > --- > > Key: MEV-221 > URL: http://jira.codehaus.org/browse/MEV-221 > Project: Maven Evangelism > Type: Bug > Reporter: Ry

[jira] Moved: (MEV-221) transitive dependencies not being picked up

2005-11-20 Thread Brett Porter (JIRA)
Complexity: (was: Intermediate) Workflow: jira (was: Maven) Key: MEV-221 (was: MNG-1626) Project: Maven Evangelism (was: Maven 2) > transitive dependencies not being picked up > --- > > Key: MEV-221 >

[jira] Created: (MNG-1626) transitive dependencies not being picked up

2005-11-18 Thread Ryan Sonnek (JIRA)
transitive dependencies not being picked up --- Key: MNG-1626 URL: http://jira.codehaus.org/browse/MNG-1626 Project: Maven 2 Type: Bug Versions: 2.0 Reporter: Ryan Sonnek According to the POM for spring-hibernate

[jira] Closed: (MNG-1363) Transitive dependencies with system scope and version range trying to be downloaded

2005-11-14 Thread John Casey (JIRA)
processed the system-scoped dep, rather than right below it... > Transitive dependencies with system scope and version range trying to be > downloaded > --- > > Key: MNG-1363 >

[jira] Commented: (MNG-1363) Transitive dependencies with system scope and version range trying to be downloaded

2005-11-09 Thread Carlos Sanchez (JIRA)
[ http://jira.codehaus.org/browse/MNG-1363?page=comments#action_50539 ] Carlos Sanchez commented on MNG-1363: - Currently they are just an advice to people, eg they need java 1.4.x tools.jar > Transitive dependencies with system scope and version ra

[jira] Reopened: (MNG-1363) Transitive dependencies with system scope and version range trying to be downloaded

2005-11-09 Thread Brett Porter (JIRA)
[ http://jira.codehaus.org/browse/MNG-1363?page=all ] Brett Porter reopened MNG-1363: --- fix broke the build, rolled back (to reapply, run svn merge -r332219:332220 in maven-artifact after updating) > Transitive dependencies with system scope

[jira] Closed: (MNG-1363) Transitive dependencies with system scope and version range trying to be downloaded

2005-11-09 Thread John Casey (JIRA)
think we'll start phasing them out when we have better spec-dependency support...they represent too many questions that fall outside the main framework of maven, and I believe they're unnecessary. > Transitive dependencies with system scope a

[jira] Commented: (MNG-1363) Transitive dependencies with system scope and version range trying to be downloaded

2005-11-09 Thread John Casey (JIRA)
[ http://jira.codehaus.org/browse/MNG-1363?page=comments#action_50515 ] John Casey commented on MNG-1363: - hmm, bring up an interesting point: How can we determine the actual version of a system-scoped dependency? > Transitive dependencies with sys

[jira] Updated: (MNG-1363) Transitive dependencies with system scope and version range trying to be downloaded

2005-11-09 Thread John Casey (JIRA)
[ http://jira.codehaus.org/browse/MNG-1363?page=all ] John Casey updated MNG-1363: Complexity: Expert (was: Intermediate) Remaining Estimate: 1 hour Original Estimate: 1 hour > Transitive dependencies with system scope and version ra

[jira] Commented: (MNG-1388) Transitive Dependencies not used even when set to compile scope

2005-11-07 Thread John Casey (JIRA)
these POMs...otherwise, we'll lose the ability to target a build for a given platform where it will require the inclusion of a helper API. > Transitive Dependencies not used even when set to compile scope > --- > >

[jira] Commented: (MNG-1388) Transitive Dependencies not used even when set to compile scope

2005-11-04 Thread Damian Bradicich (JIRA)
test b 1.0 war b test test a 1.0 compile > Transitive Dependencies not used even when set to compile scope > --- > > Key: MNG-1388 > URL: http://jira.code

[jira] Updated: (MNG-1388) Transitive Dependencies not used even when set to compile scope

2005-11-04 Thread Brett Porter (JIRA)
pending on profile B depends on A. If sql profile is active, I would expect that when I build B, it pulls the transitive dependancy on sql from A. Fix Version: 2.0.1 are you able to produce a small test case to demonstrate this? > Transitive Dependencies not used even wh

[jira] Updated: (MNG-1378) test-jar transitive dependencies are incorrectly calculated

2005-11-04 Thread Brett Porter (JIRA)
[ http://jira.codehaus.org/browse/MNG-1378?page=all ] Brett Porter updated MNG-1378: -- Description: test-jar transitive dependencies are calculated as per compile scope rather than test scope. The situation is demonstrated nicely in it0077: * module sub1

[jira] Updated: (MNG-1363) Transitive dependencies with system scope and version range trying to be downloaded

2005-11-03 Thread Brett Porter (JIRA)
versions are present in the repository for the artifact with a range [1.4,1.5) java:tools:null:jar Fix Version: 2.0.1 Environment: > Transitive dependencies with system scope and version range trying to be > down

[jira] Created: (MNG-1388) Transitive Dependencies not used even when set to compile scope

2005-11-01 Thread Damian Bradicich (JIRA)
Transitive Dependencies not used even when set to compile scope --- Key: MNG-1388 URL: http://jira.codehaus.org/browse/MNG-1388 Project: Maven 2 Type: Bug Components: maven-core Versions: 2.0

[jira] Created: (MNG-1378) test-jar transitive dependencies are incorrectly calculated

2005-10-31 Thread Mark Hobson (JIRA)
test-jar transitive dependencies are incorrectly calculated --- Key: MNG-1378 URL: http://jira.codehaus.org/browse/MNG-1378 Project: Maven 2 Type: Bug Components: maven-core Versions: 2.0 Reporter

[jira] Created: (MNG-1363) Transitive dependencies with system scope and version range trying to be downloaded

2005-10-29 Thread Carlos Sanchez (JIRA)
Transitive dependencies with system scope and version range trying to be downloaded --- Key: MNG-1363 URL: http://jira.codehaus.org/browse/MNG-1363 Project: Maven 2 Type: Bug

[jira] Closed: (MNG-1173) transitive dependencies with system scope are treated as normal scope

2005-10-12 Thread John Casey (JIRA)
[ http://jira.codehaus.org/browse/MNG-1173?page=all ] John Casey closed MNG-1173: --- Resolution: Fixed simply added a conditional to preserve system scope when resolving transitively... > transitive dependencies with system scope are treated as nor

[jira] Updated: (MNG-1173) transitive dependencies with system scope are treated as normal scope

2005-10-11 Thread Brett Porter (JIRA)
[ http://jira.codehaus.org/browse/MNG-1173?page=all ] Brett Porter updated MNG-1173: -- Assign To: John Casey Fix Version: 2.0-beta-4 I think John has fixed this? > transitive dependencies with system scope are treated as normal sc

[jira] Created: (MNG-1173) transitive dependencies with system scope are treated as normal scope

2005-10-11 Thread Matthew Pocock (JIRA)
transitive dependencies with system scope are treated as normal scope - Key: MNG-1173 URL: http://jira.codehaus.org/browse/MNG-1173 Project: Maven 2 Type: Bug Versions: 2.0-beta-4

[jira] Closed: (MNG-820) Over-zealous transitive dependencies during mediation

2005-09-25 Thread Brett Porter (JIRA)
[ http://jira.codehaus.org/browse/MNG-820?page=all ] Brett Porter closed MNG-820: Resolution: Fixed > Over-zealous transitive dependencies during mediation > - > > Key: MNG-820 &g

[jira] Updated: (MNG-820) Over-zealous transitive dependencies during mediation

2005-09-25 Thread Brett Porter (JIRA)
[ http://jira.codehaus.org/browse/MNG-820?page=all ] Brett Porter updated MNG-820: - Assign To: Brett Porter Remaining Estimate: 2 hours Original Estimate: 7200 > Over-zealous transitive dependencies during mediat

[jira] Closed: (MNG-787) Dependency suggestion in current project should take precedence over transitive dependencies by default

2005-09-25 Thread Brett Porter (JIRA)
ake precedence over > transitive dependencies by default > --- > > Key: MNG-787 > URL: http://jira.codehaus.org/browse/MNG-787 > Project: Maven 2 >

[jira] Updated: (MNG-820) Over-zealous transitive dependencies during mediation

2005-09-22 Thread Brett Porter (JIRA)
[ http://jira.codehaus.org/browse/MNG-820?page=all ] Brett Porter updated MNG-820: - Component: maven-artifact > Over-zealous transitive dependencies during mediation > - > >

[jira] Closed: (MNG-954) Transitive dependencies of War modules should not be copied in the Ear by default

2005-09-22 Thread Brett Porter (JIRA)
[ http://jira.codehaus.org/browse/MNG-954?page=all ] Brett Porter closed MNG-954: Assign To: Brett Porter Resolution: Duplicate > Transitive dependencies of War modules should not be copied in the Ear by > d

[jira] Created: (MNG-954) Transitive dependencies of War modules should not be copied in the Ear by default

2005-09-22 Thread Fabrice BELLINGARD (JIRA)
Transitive dependencies of War modules should not be copied in the Ear by default - Key: MNG-954 URL: http://jira.codehaus.org/browse/MNG-954 Project: Maven 2 Type: Improvement

  1   2   >