Maven 4.0.0-RC1: Consumer POM contains dependencyManagement

2024-12-09 Thread Moritz Halbritter
e one dependency from that dependencyManagement section, spring-boot-autoconfigure. I don't understand why the consumer POM has copied all of the managed dependencies from spring-boot-dependencies, or why the consumer POM contains dependencyManagement at all, because the dependency on spring-boot-aut

Re: How does dependencyManagement analysis in Maven-Tree work

2020-07-28 Thread Ian Lavallee
Hi all, I was able to find some StackOverflow questions that described the expected behaviour and I'm able to get this feature implemented by injecting a MavenProject variable and accessing the project's Model DependencyManagement field. Thanks, Ian On Tue, Jul 28, 2020 at 3:24 PM Ia

How does dependencyManagement analysis in Maven-Tree work

2020-07-28 Thread Ian Lavallee
I have a working but not feature complete verbose tree builder and serializer in the maven-dependency-plugin and I am trying to add the dependencyManagement messages (ex. (org.apache.maven:maven-model:jar:2.0.5:test - version managed from 2.0.4; scope managed from compile; omitted for conflict

Re: [maven] 01/01: [MNG-6213] Validate scope in dependencyManagement

2018-12-28 Thread Enrico Olivelli
mmit to branch MNG-6213 > >> in repository https://gitbox.apache.org/repos/asf/maven.git > >> > >> commit 859e344f4d5f7bfa00caf7343ea6554138e9dcf7 > >> Author: Michael Warnecke <13...@nordakademie.de> > >> AuthorDate: Sat Sep 23 18:37:09 2017 +020

Re: [maven] 01/01: [MNG-6213] Validate scope in dependencyManagement

2018-12-28 Thread Michael Osipov
859e344f4d5f7bfa00caf7343ea6554138e9dcf7 Author: Michael Warnecke <13...@nordakademie.de> AuthorDate: Sat Sep 23 18:37:09 2017 +0200 [MNG-6213] Validate scope in dependencyManagement This closes #131 --- .../model/validation/DefaultModelValidator.java| 10 ++- .../validation/DefaultModelValidatorTes

Re: [maven] 01/01: [MNG-6213] Validate scope in dependencyManagement

2018-12-28 Thread Enrico Olivelli
hor: Michael Warnecke <13...@nordakademie.de> > AuthorDate: Sat Sep 23 18:37:09 2017 +0200 > > [MNG-6213] Validate scope in dependencyManagement > > This closes #131 > --- > .../model/validation/DefaultModelValidator.java| 10 ++- > .../

[GitHub] maven pull request #158: Set the profiles on reecursive dependencyManagement...

2018-02-15 Thread clarkperkins
GitHub user clarkperkins opened a pull request: https://github.com/apache/maven/pull/158 Set the profiles on reecursive dependencyManagement imports When a set of default repositories are specified via a profile in the global settings.xml, recursive dependencyManagement imports

[GitHub] maven pull request #131: [MNG-6213] Validate scope in dependencyManagement

2017-09-23 Thread MichaelWarnecke
GitHub user MichaelWarnecke opened a pull request: https://github.com/apache/maven/pull/131 [MNG-6213] Validate scope in dependencyManagement This is a patch for MNG-6213: https://issues.apache.org/jira/browse/MNG-6213 You can merge this pull request into a Git repository by

[GitHub] maven pull request #130: [MNG-6231] Validate scope in dependencyManagement

2017-09-23 Thread MichaelWarnecke
Github user MichaelWarnecke closed the pull request at: https://github.com/apache/maven/pull/130 --- - To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org For additional commands, e-mail: dev-h...@maven.apache.org

[GitHub] maven pull request #130: [MNG-6231] Validate scope in dependencyManagement

2017-09-23 Thread MichaelWarnecke
GitHub user MichaelWarnecke opened a pull request: https://github.com/apache/maven/pull/130 [MNG-6231] Validate scope in dependencyManagement You can merge this pull request into a Git repository by running: $ git pull https://github.com/MichaelWarnecke/maven MNG-6213

[GitHub] maven pull request: [MNG-5947] dependencyManagement import section...

2016-01-04 Thread akacme
Github user akacme commented on the pull request: https://github.com/apache/maven/pull/74#issuecomment-168756278 I've added POM-property-based configuration. Based on my current skill level embedding configuration somewhere else would require change in dependencies section for maven-m

[GitHub] maven pull request: [MNG-5947] dependencyManagement import section...

2016-01-03 Thread jvanzyl
Github user jvanzyl commented on the pull request: https://github.com/apache/maven/pull/74#issuecomment-168565897 POM property, CLI property override, or we might want to start collecting these provisional changes in a special maven plugin configuration section for activating proposed

[GitHub] maven pull request: [MNG-5947] dependencyManagement import section...

2016-01-03 Thread akacme
injected via settings.xml). In case when a change of DependencyManagement model is allowed (4.x?) - this might be better approach in the long run as this info can be reused in the maven dependency plugin (to show where managed version comes from) and perhaps will allow to introduce pluggable

[GitHub] maven pull request: [MNG-5947] dependencyManagement import section...

2016-01-03 Thread jvanzyl
Github user jvanzyl commented on the pull request: https://github.com/apache/maven/pull/74#issuecomment-168534190 General rule of thumb is that a change in resolution will definitely not go in if it changes the default behaviour within a minor version. First smoke test is making sure

[GitHub] maven pull request: [MNG-5947] dependencyManagement import section...

2016-01-03 Thread akacme
Github user akacme commented on the pull request: https://github.com/apache/maven/pull/74#issuecomment-168519406 I've introduced DependencyManagementGraph object to store and compute "distance" for dependencyManagement section - so there is no change to the model itsel

[GitHub] maven pull request: [MNG-5947] dependencyManagement import section...

2016-01-02 Thread michael-o
Github user michael-o commented on the pull request: https://github.com/apache/maven/pull/74#issuecomment-168405448 Now I see, the `Optional´ comes from Guava and not from Java. I think the likelyhood is higher w/o a model change. --- If your project is set up for it, you can reply

[GitHub] maven pull request: [MNG-5947] dependencyManagement import section...

2016-01-02 Thread akacme
Github user akacme commented on the pull request: https://github.com/apache/maven/pull/74#issuecomment-168404937 In other words - will it go to Maven 3.x when there is no modification to the model itself? --- If your project is set up for it, you can reply to this email and have your

[GitHub] maven pull request: [MNG-5947] dependencyManagement import section...

2016-01-02 Thread akacme
Github user akacme commented on the pull request: https://github.com/apache/maven/pull/74#issuecomment-168403276 Code has been compiled using Java 7. Model has been enhanced to store graph of imports in dependency management section - I can rewrite it to store it elsewhere, but such s

[GitHub] maven pull request: [MNG-5947] dependencyManagement import section...

2016-01-02 Thread michael-o
Github user michael-o commented on the pull request: https://github.com/apache/maven/pull/74#issuecomment-168402507 You are using Java 8 features which we can't accept. Java 7 only. The model is changed. I would opt-in for that not before Maven 4. --- If your project is set up for it

[GitHub] maven pull request: [MNG-5947] dependencyManagement import section...

2015-12-13 Thread akacme
GitHub user akacme opened a pull request: https://github.com/apache/maven/pull/74 [MNG-5947] dependencyManagement import section does not resolve dependencies using "nearest" definition o DepenencyManagement model updated to contain declared dependencies an

[GitHub] maven pull request: [MNG-5947] dependencyManagement import section...

2015-12-13 Thread akacme
Github user akacme closed the pull request at: https://github.com/apache/maven/pull/73 --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enable

[GitHub] maven pull request: [MNG-5947] dependencyManagement import section...

2015-12-13 Thread akacme
GitHub user akacme opened a pull request: https://github.com/apache/maven/pull/73 [MNG-5947] dependencyManagement import section does not resolve dependencies using "nearest" definition dependencies using "nearest" definition o DepenencyManagement mode

Re: Only one POM with dependencyManagement for entire company

2014-11-19 Thread tibor17
://maven.40175.n5.nabble.com/Only-one-POM-with-dependencyManagement-for-entire-company-tp5814669p5814769.html Sent from the Maven Developers mailing list archive at Nabble.com. - To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org

Re: Only one POM with dependencyManagement for entire company

2014-11-18 Thread Paul Benedict
t; > > > > > > - > > BR, tibor17 > > -- > > View this message in context: > > > http://maven.40175.n5.nabble.com/Only-one-POM-with-dependencyManagement-for-entire-company-tp5814669p5814678.html > > Sent from the Maven Developers mailing list ar

Re: Only one POM with dependencyManagement for entire company

2014-11-18 Thread Anders Hammar
r several customers using other (not-so-Maven-friendly) app servers I've created similar BOMs. /Anders > > > > - > BR, tibor17 > -- > View this message in context: > http://maven.40175.n5.nabble.com/Only-one-POM-with-dependencyManagement-for-entire-company-tp5814669p5

Re: Only one POM with dependencyManagement for entire company

2014-11-18 Thread tibor17
interest. :( - BR, tibor17 -- View this message in context: http://maven.40175.n5.nabble.com/Only-one-POM-with-dependencyManagement-for-entire-company-tp5814669p5814678.html Sent from the Maven Developers mailing list archive at Nabble.com

Re: Only one POM with dependencyManagement for entire company

2014-11-18 Thread Paul Benedict
: > Hi All, > > I would like to get your help. I am still trying to explain that very large > commercial company (don't mean ASF) should not have one hotspot POM with > only one dependencyManagement (DM). One DM is too weak rule, i would say. > > My arguments are that one

Only one POM with dependencyManagement for entire company

2014-11-18 Thread tibor17
Hi All, I would like to get your help. I am still trying to explain that very large commercial company (don't mean ASF) should not have one hotspot POM with only one dependencyManagement (DM). One DM is too weak rule, i would say. My arguments are that one DM section will not fit to the nee

Re: Release plugin snapshot resolution in dependencyManagement section

2013-08-28 Thread Robert Scholte
See also https://jira.codehaus.org/browse/MRELEASE-594 Some background info: the maven-release-plugin ensures that the *used* dependencies of the project are final. If a dependency is *defined* as SNAPSHOT in dependencyManagement but it isn't used, the release is considered stable. Ho

Release plugin snapshot resolution in dependencyManagement section

2013-08-27 Thread Konrad
Hello everyone, I was wondering why the resolution of snapshots in the dependency section is implemented but the resolution of snapshots in the dependencyManagement section is not. There is also a @TODO comment regarding this at CheckDependencySnapshots.java line 148. As far as I can see

Using dependencyManagement and pom/import

2012-06-22 Thread Kurt Zettel II
Hello, I am using dependencyManagement and including a pom with with a scope of import so I can include it's dependencies' versions. It works as expected except for two things: -the versions plugin can't seem to update this dependency. -the release plugin doesn't accept a

Re: Create a enforcer-incubator-rules project (was:Re: MENFORCER-19 (enforce dependencyManagement))

2011-02-03 Thread nicolas de loof
Brian, I'll then close MENFORCER-19 and comment with a link to dependency:analyse-dpt-mgt Baptiste, Mojo.codehaus.org could be a good place for such contributor-driven incubator. We allready merged some major mojo plugins into maven ones. 2011/2/3 Baptiste MATHUS > Hi all, > > I've been thinkin

Create a enforcer-incubator-rules project (was:Re: MENFORCER-19 (enforce dependencyManagement))

2011-02-03 Thread Baptiste MATHUS
Hi all, I've been thinking about enforcer rules for some times. I think it would be a good thing to have a kind of enforcer-rules-incubator project somewhere that would encourage users share¢ralize their rules. I personnally have already written rules that I think are not very specific to my orga

Re: MENFORCER-19 (enforce dependencyManagement)

2011-02-02 Thread Brian Fox
You could simply add a flag or alternate mojo to the dependency plugin to allow it to fail. IIRC the analyze goal already does this. IOW it's not a requirement that every mojo that fails a build be rolled into the enforcer plugin. Failing that, you'd have to pull all the logic out into a shared com

MENFORCER-19 (enforce dependencyManagement)

2011-02-02 Thread nicolas de loof
Hi folks, I'd like to work on MENFORCER-19, org.apache.maven.plugin.dependency.AnalyzeDepMgt has all the necessary code to create an EnforcerRule "EnforceDependencyManagement", but I wonder how we should manage such code duplication. Copy/paste some hundred lines from dependency plugin into enforc

Re: Require Dependency Version in DependencyManagement section feature

2010-09-27 Thread Baptiste MATHUS
wing: > > > scan all project (and sub poms) for "Company" specific dependencies added > specifying a version > > - versions should only be specified in dependencyManagement sections. > Fail if we find specific versions explicitly defined. > > > This initial

Re: Require Dependency Version in DependencyManagement section feature

2010-09-24 Thread Brian Fox
> > > scan all project (and sub poms) for "Company" specific dependencies added > specifying a version > >   - versions should only be specified in dependencyManagement sections. >   Fail if we find specific versions explicitly defined. > > > This initial

Require Dependency Version in DependencyManagement section feature

2010-09-24 Thread Nicholas Neuberger
ur team to perform the following: scan all project (and sub poms) for "Company" specific dependencies added specifying a version - versions should only be specified in dependencyManagement sections. Fail if we find specific versions explicitly defined. This initially feels like a

RE: Specifying a repository in pluginManagement or dependencyManagement

2008-09-05 Thread Brian E. Fox
ailto:[EMAIL PROTECTED] Sent: Friday, September 05, 2008 5:05 AM To: dev@maven.apache.org Cc: Julian Payne Subject: Specifying a repository in pluginManagement or dependencyManagement I have some plugins and dependencies that are published to their own repositories and I want to be able to specify

Specifying a repository in pluginManagement or dependencyManagement

2008-09-05 Thread Julian Payne
I have some plugins and dependencies that are published to their own repositories and I want to be able to specify for a given dependency which repository to use to look for new versions. Ideally I would be like to be able to do something like this in my pom (I use jtidy as an example but I also ha

Re: Importing of DependencyManagement Info

2008-08-25 Thread Shane Isbell
Shane Isbell wrote: >> >>I've been refactoring more of the project builder >>code and encountered a >>rule that if a >>dependencyManagement/dependencies/dependency >>element ha

Re: Importing of DependencyManagement Info

2008-08-25 Thread Brian Fox
te: I've been refactoring more of the project builder code and encountered a rule that if a dependencyManagement/dependencies/dependency element has type=pom and scope=import, the de

Re: Importing of DependencyManagement Info

2008-08-25 Thread Ralph Goers
ote: Ralph Goers wrote: Ralph Goers wrote: Shane Isbell wrote: I've been refactoring more of the project builder code and encountered a rule that if a dependencyMa

Re: Importing of DependencyManagement Info

2008-08-25 Thread Brett Porter
Hi Shane, A few questions on this: On 26/08/2008, at 12:26 AM, Shane Isbell wrote: Basically, you just put in into the pom. The id references an external pom snippet and injects it. What does the id look like? Is the snippet a standalone file, or is it referenced from an existing POM? And

Re: Importing of DependencyManagement Info

2008-08-25 Thread Shane Isbell
ECTED]> wrote: > > > > Ralph Goers wrote: > >> >> >> Ralph Goers wrote: >> >>> >>> >>> Ralph Goers wrote: >>> >>>> >>>> >>>> Shane Isbell wrote: >>>> >>>>> I&

Re: Importing of DependencyManagement Info

2008-08-25 Thread Ralph Goers
Ralph Goers wrote: Ralph Goers wrote: Ralph Goers wrote: Shane Isbell wrote: I've been refactoring more of the project builder code and encountered a rule that if a dependencyManagement/dependencies/dependency element has type=pom and scope=import, the dependency management se

Re: Importing of DependencyManagement Info

2008-08-18 Thread Ralph Goers
Ralph Goers wrote: Ralph Goers wrote: Shane Isbell wrote: I've been refactoring more of the project builder code and encountered a rule that if a dependencyManagement/dependencies/dependency element has type=pom and scope=import, the dependency management section of that depen

Re: Importing of DependencyManagement Info

2008-08-15 Thread Ralph Goers
Ralph Goers wrote: Shane Isbell wrote: I've been refactoring more of the project builder code and encountered a rule that if a dependencyManagement/dependencies/dependency element has type=pom and scope=import, the dependency management section of that dependency should be imported int

Re: Importing of DependencyManagement Info

2008-08-14 Thread Ralph Goers
Shane Isbell wrote: I've been refactoring more of the project builder code and encountered a rule that if a dependencyManagement/dependencies/dependency element has type=pom and scope=import, the dependency management section of that dependency should be imported into the containing pom

Re: Importing of DependencyManagement Info

2008-08-14 Thread John Casey
Aside from the potential for solving this in the new project builder code, the existing implementation has a major limitation: If a parent POM specified a child in its dependencyManagement section with scope == import, and that child specifies this parent POM in its section, then you wind up

Importing of DependencyManagement Info

2008-08-14 Thread Shane Isbell
I've been refactoring more of the project builder code and encountered a rule that if a dependencyManagement/dependencies/dependency element has type=pom and scope=import, the dependency management section of that dependency should be imported into the containing pom model. This is a one-off

FW: Report for dependencyManagement and pluginManagement

2008-01-22 Thread nicklist
Crosspost to dev list. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Tue 1/22/2008 2:51 PM To: Maven Users List Subject: RE: Report for dependencyManagement and pluginManagement I have searched for this, but couldn't find it. I've started to imple

Re: dependencyManagement Bug? in Eclipse Plugin

2006-12-03 Thread Ole Ersoy
gt; Incidentally - Anyone know if there is an option > that > > makes the eclipse plugin create eclipse projects > for > > projects with packaging pom. This would be really > > nice for editing the dependencyManagement section > of > > the pom. > > > &

Re: dependencyManagement Bug? in Eclipse Plugin

2006-12-03 Thread Mike Perham
This is a long standing and popular issue in JIRA. On 12/3/06, Ole Ersoy <[EMAIL PROTECTED]> wrote: Hi, If I override a dependency in a child pom, and then run - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional comma

Re: dependencyManagement Bug? in Eclipse Plugin

2006-12-03 Thread Stephen Duncan
n that makes the eclipse plugin create eclipse projects for projects with packaging pom. This would be really nice for editing the dependencyManagement section of the pom. Here is the section of this document containing the test for this (The mail parser may nix some of the entities) Challenge

dependencyManagement Bug? in Eclipse Plugin

2006-12-03 Thread Ole Ersoy
/directory/sandbox/oersoy/maven-testing/eclipse-maven-testing.apt Incidentally - Anyone know if there is an option that makes the eclipse plugin create eclipse projects for projects with packaging pom. This would be really nice for editing the dependencyManagement section of the pom. Here is the section

Re: dependencyManagement

2006-09-15 Thread Jason van Zyl
On 15 Sep 06, at 4:06 PM 15 Sep 06, Ralph Goers wrote: OK. Could someone apply the patch I provided for http:// jira.codehaus.org/browse/MNG-1577 and verify it? If you add tests I will apply it. I don't have time to check it and verify it right now. A test would expedite the review of thi

Re: dependencyManagement

2006-09-15 Thread Ralph Goers
OK. Could someone apply the patch I provided for http://jira.codehaus.org/browse/MNG-1577 and verify it? Ralph Carlos Sanchez wrote: Is not that we don't want to see that fixed, but we're very busy. A patch would help to get it solved earlier. ---

[jira] Created: (MNG-2128) Add an option to enforce dependencyManagement

2006-03-06 Thread Carlos Sanchez (JIRA)
Add an option to enforce dependencyManagement - Key: MNG-2128 URL: http://jira.codehaus.org/browse/MNG-2128 Project: Maven 2 Type: New Feature Components: Dependencies Versions: 2.0.3, 2.0, 2.0.1, 2.0.2

[jira] Updated: (MNG-2128) Add an option to enforce dependencyManagement

2006-03-06 Thread Carlos Sanchez (JIRA)
[ http://jira.codehaus.org/browse/MNG-2128?page=all ] Carlos Sanchez updated MNG-2128: Fix Version: 2.1 > Add an option to enforce dependencyManagement > - > > Key: MNG-2128 >

Re: dependencyManagement

2006-02-28 Thread Carlos Sanchez
Is not that we don't want to see that fixed, but we're very busy. A patch would help to get it solved earlier. On 2/28/06, Ralph Goers <[EMAIL PROTECTED]> wrote: > OK. Thanks for the info. But until > http://jira.codehaus.org/browse/MNG-1577 is fixed I'm afraid I will have > to stick with Maven 1.

Re: dependencyManagement

2006-02-28 Thread Ralph Goers
OK. Thanks for the info. But until http://jira.codehaus.org/browse/MNG-1577 is fixed I'm afraid I will have to stick with Maven 1.0.2. FWIW, the vote count on that issue has gone from 3 to 8 since I started this thread yesterday. I guarantee it will go much higher. Carlos Sanchez wrote: Y

Re: dependencyManagement

2006-02-28 Thread Carlos Sanchez
You don't have guarantee of wich one will be chosen, althoug it will be always the same. On 2/28/06, Ralph Goers <[EMAIL PROTECTED]> wrote: > And if A -> B -> D1.0 and >-> C -> D2.0 > who wins? > > > Carlos Sanchez said: > > No, closest in the dependency graph means that the deepes

Re: dependencyManagement

2006-02-28 Thread Ralph Goers
And if A -> B -> D1.0 and -> C -> D2.0 who wins? Carlos Sanchez said: > No, closest in the dependency graph means that the deepest dep is > overriden > > If A -> B -> C1.0 and A -> C2.0 > then C2.0 wins because id closer to your project (A) > > On 2/28/06, Ralph Goers <[EMAIL PROTE

Re: dependencyManagement

2006-02-28 Thread Carlos Sanchez
No, closest in the dependency graph means that the deepest dep is overriden If A -> B -> C1.0 and A -> C2.0 then C2.0 wins because id closer to your project (A) On 2/28/06, Ralph Goers <[EMAIL PROTECTED]> wrote: > Carlos Sanchez said: > > To be clear: > > You never have two artifacts in the class

Re: dependencyManagement

2006-02-28 Thread Ralph Goers
Carlos Sanchez said: > To be clear: > You never have two artifacts in the classpath with same > groupId:artifactId, maven uses the "nearer" version always, which is > the one closest to your project in the transitive dependency graph, > not the most recent version. Is that the same as saying it us

Re: dependencyManagement

2006-02-28 Thread Carlos Sanchez
To be clear: You never have two artifacts in the classpath with same groupId:artifactId, maven uses the "nearer" version always, which is the one closest to your project in the transitive dependency graph, not the most recent version. On 2/28/06, Steve Loughran <[EMAIL PROTECTED]> wrote: > Ralph G

Re: dependencyManagement

2006-02-28 Thread Ralph Goers
where the control lies in choosing versions. We believe it needs to be at a global (i.e. corporate wide) scope. Changes to versions of third party jars always start with our lowest level framework compoents and percolate their way up. As I said, Maven could even emit Warnings when it detects that

Re: dependencyManagement

2006-02-28 Thread Eric Redmond
to be? > >> Our configuration management dept requires that all our projects use > >> the same versions of xerces, xalan, etc. This is controlled via the > >> build.properties file. Putting it in each project's POM still leads > >> to the possibility that other

Re: dependencyManagement

2006-02-28 Thread Ralph Goers
Steve Loughran wrote: No. I have a properties file that lays down the dependencies for everything in my project, like log4j, across about 20 different sub projects. These have template pom files that hard code what they depend on, but the actual version of what they depend on is driven by my

Re: dependencyManagement

2006-02-28 Thread Steve Loughran
Ralph Goers wrote: Steve, What you are proposing is to basically bypass maven and "hack" the pom's dynamically with the versions required. It seems to me it would be easier to have a process to do that in one's local repository. Then you only have to do it once. But then you don't have a re

Re: dependencyManagement

2006-02-28 Thread Ralph Goers
t other projects will use different versions. So it sounds like I have to have a dependencyManagement section in a master pom and then each project has to specify all its dependencies and this will then cause the versions specified in transitive dependencies not to be used? Ralph Its an inte

Re: dependencyManagement

2006-02-28 Thread Steve Loughran
is is controlled via the build.properties file. Putting it in each project's POM still leads to the possibility that other projects will use different versions. So it sounds like I have to have a dependencyManagement section in a master pom and then each project has to specify all its dependencies

Re: dependencyManagement

2006-02-28 Thread Ralph Goers
Thanks. I guess I'm not the first to feel this is a major design error. Carlos Sanchez wrote: You can vote for the issue http://jira.codehaus.org/browse/MNG-1577 - To unsubscribe, e-mail: [EMAIL PROTECTED] For addition

Re: dependencyManagement

2006-02-28 Thread Ralph Goers
a the build.properties file. Putting it in each project's POM still leads to the possibility that other projects will use different versions. So it sounds like I have to have a dependencyManagement section in a master pom and then each project has to specify all its dependencies and this will

Re: dependencyManagement

2006-02-27 Thread Brett Porter
the incorrect default behavior for anyone - > unless everyone is forced to disable transitive dependencies. > > Without this control projects will very quickly have multiple versions > of jars. > > So am I missing something? Is there another configuration item that can > be s

Re: dependencyManagement

2006-02-27 Thread Carlos Sanchez
> of jars. > > So am I missing something? Is there another configuration item that can > be specified on a dependency in the dependencyManagement section to > cause it to override child poms? > > Unfortunately, unless this is remedied we will be forced to stick with > Mave

dependencyManagement

2006-02-27 Thread Ralph Goers
to disable transitive dependencies. Without this control projects will very quickly have multiple versions of jars. So am I missing something? Is there another configuration item that can be specified on a dependency in the dependencyManagement section to cause it to override child poms? Unfo

Re: Bug in POM validation when using dependencyManagement

2006-02-15 Thread John Allen
AIL PROTECTED]> To: Sent: Wednesday, February 15, 2006 11:10 AM Subject: Bug in POM validation when using dependencyManagement Hi, I make extensive use of the dependencyManagement section over multiple POM hierchies. I have them setup like this: ${pom.groupId}

Bug in POM validation when using dependencyManagement

2006-02-15 Thread Michael Böckling
Hi, I make extensive use of the dependencyManagement section over multiple POM hierchies. I have them setup like this: ${pom.groupId} some-artifact ${some-artifact} The actual version is defined in the same POM in the section as e.g. 1.0

[jira] Created: (MRELEASE-70) ${version} in dependencyManagement is replaced after release:prepare

2006-01-10 Thread Dan Tran (JIRA)
${version} in dependencyManagement is replaced after release:prepare Key: MRELEASE-70 URL: http://jira.codehaus.org/browse/MRELEASE-70 Project: Maven 2.x Release Plugin Type: Bug Environment: xp

[jira] Commented: (MNG-1921) test scope in dependencyManagement does not appear to be transitive to dependent subProjects

2006-01-09 Thread Brian Bonner (JIRA)
* the case, then I'll just have to declare the test dependencies in each module that also needs the test scope jars. Is this correct? Thanks. > test scope in dependencyManagement does not appear to be transitive to >

[jira] Updated: (MNG-385) use dependencyManagement in m2 itself

2006-01-05 Thread Jason van Zyl (JIRA)
[ http://jira.codehaus.org/browse/MNG-385?page=all ] Jason van Zyl updated MNG-385: -- Component: (was: Design & Best Practices) Bootstrap & Build > use dependencyManagement i

[jira] Updated: (MNG-385) use dependencyManagement in m2 itself

2006-01-05 Thread Jason van Zyl (JIRA)
[ http://jira.codehaus.org/browse/MNG-385?page=all ] Jason van Zyl updated MNG-385: -- Priority: Trivial (was: Minor) > use dependencyManagement in m2 itself > - > > Key: MNG-385 >

[jira] Commented: (MNG-1921) test scope in dependencyManagement does not appear to be transitive to dependent subProjects

2006-01-04 Thread Brett Porter (JIRA)
r the easymock in the child should already be transitive to the peer. But tests scope jars are not. There are other problems here: eg, no group ID. > test scope in dependencyManagement does not appear to be transitive to > dependent

Re: Created: (MNG-1921) test scope in dependencyManagement does not appear to be transitive to dependent subProjects

2006-01-04 Thread Brett Porter
reminder to moderators not to moderate through anything from this address. I tried emailing it, but didn't get a response. Who knows what they've done. - Brett [EMAIL PROTECTED] wrote: > test scope in dependencyManagement does not appear to be transitive to > depen

Re: Created: (MNG-1921) test scope in dependencyManagement does not appear to be transitive to dependent subProjects

2006-01-04 Thread london
test scope in dependencyManagement does not appear to be transitive to dependent subProjects Key: MNG-1921 URL: http://jira.codehaus.org/browse/MNG-1921 Project: Maven 2

[jira] Commented: (MNG-1921) test scope in dependencyManagement does not appear to be transitive to dependent subProjects

2006-01-04 Thread Brian Bonner (JIRA)
I believe. > test scope in dependencyManagement does not appear to be transitive to > dependent subProjects > > > Key: MNG-1921 > URL: http://jira.codehaus.o

[jira] Created: (MNG-1921) test scope in dependencyManagement does not appear to be transitive to dependent subProjects

2006-01-04 Thread Brian Bonner (JIRA)
test scope in dependencyManagement does not appear to be transitive to dependent subProjects Key: MNG-1921 URL: http://jira.codehaus.org/browse/MNG-1921 Project: Maven 2

Re: Moved: (MRELEASE-7) Release versioning does not work with dependencyManagement

2005-12-20 Thread london
: MNG-1728) Project: Maven 2.x Release Plugin (was: Maven 2) > Release versioning does not work with dependencyManagement > -- > > Key: MRELEASE-7 > URL: http://jira.codehaus.org/browse/MRELEASE-7 >

Re: Moved: (MRELEASE-36) Release plugin fails to update SNAPSHOTS in the dependencyManagement section

2005-12-20 Thread london
: Maven) Key: MRELEASE-36 (was: MNG-1374) Project: Maven 2.x Release Plugin (was: Maven 2) > Release plugin fails to update SNAPSHOTS in the dependencyManagement section > > > Key:

[jira] Moved: (MRELEASE-36) Release plugin fails to update SNAPSHOTS in the dependencyManagement section

2005-12-19 Thread Jason van Zyl (JIRA)
: Maven) Key: MRELEASE-36 (was: MNG-1374) Project: Maven 2.x Release Plugin (was: Maven 2) > Release plugin fails to update SNAPSHOTS in the dependencyManagement section > > > Key:

[jira] Moved: (MRELEASE-7) Release versioning does not work with dependencyManagement

2005-12-19 Thread Jason van Zyl (JIRA)
: MNG-1728) Project: Maven 2.x Release Plugin (was: Maven 2) > Release versioning does not work with dependencyManagement > -- > > Key: MRELEASE-7 > URL: http://jira.codehaus.org/browse/MRELEASE-7 >

[jira] Closed: (MNG-1374) Release plugin fails to update SNAPSHOTS in the dependencyManagement section

2005-12-09 Thread Emmanuel Venisse (JIRA)
[ http://jira.codehaus.org/browse/MNG-1374?page=all ] Emmanuel Venisse closed MNG-1374: - Resolution: Fixed ok Mike, you're right > Release plugin fails to update SNAPSHOTS in the dependencyManagement

[jira] Commented: (MNG-1374) Release plugin fails to update SNAPSHOTS in the dependencyManagement section

2005-12-08 Thread mike perham (JIRA)
[ http://jira.codehaus.org/browse/MNG-1374?page=comments#action_53118 ] mike perham commented on MNG-1374: -- I disagree, Emmanuel. See the last part of my comment on Dec-02-05. > Release plugin fails to update SNAPSHOTS in the dependencyManagement sect

[jira] Reopened: (MNG-1374) Release plugin fails to update SNAPSHOTS in the dependencyManagement section

2005-12-08 Thread Emmanuel Venisse (JIRA)
[ http://jira.codehaus.org/browse/MNG-1374?page=all ] Emmanuel Venisse reopened MNG-1374: --- We need to update dependency versions in dependencyManagement to new version after tagging process > Release plugin fails to update SNAPSHOTS in

[jira] Closed: (MNG-1630) Optional tag in dependencyManagement is not inherited in the children projects

2005-12-06 Thread John Casey (JIRA)
dependencies. I changed the patches, in that I added a new createDependencyArtifact(..) method on ArtifactFactory, which will eliminate the need to call an older variant of the method by passing in a null value for the inheritedScope parameter. > Optional tag in dependencyManagement is

[jira] Closed: (MNG-1374) Release plugin fails to update SNAPSHOTS in the dependencyManagement section

2005-12-02 Thread John Casey (JIRA)
[ http://jira.codehaus.org/browse/MNG-1374?page=all ] John Casey closed MNG-1374: --- Resolution: Fixed Fix Version: 2.0.1 applied. thanks, mike > Release plugin fails to update SNAPSHOTS in the dependencyManagement sect

[jira] Updated: (MNG-1374) Release plugin fails to update SNAPSHOTS in the dependencyManagement section

2005-12-02 Thread mike perham (JIRA)
pse's code format to format per the maven spec and it reformatted a lot of the file. > Release plugin fails to update SNAPSHOTS in the dependencyManagement section > > > Key: MNG-1374 >

[jira] Commented: (MNG-1374) Release plugin fails to update SNAPSHOTS in the dependencyManagement section

2005-12-02 Thread mike perham (JIRA)
update SNAPSHOTS in the dependencyManagement section > > > Key: MNG-1374 > URL: http://jira.codehaus.org/browse/MNG-1374 > Project: Maven 2 > Type: Bug > Components: maven-release-plugin &

  1   2   >