Maven Enforcer Plugin

2007-09-17 Thread Hilco Wijbenga
Hi all, The enforcer plugin has a powerful feature that checks whether the POM lists a version for every plugin used. The current version (1.0-alpha-3) doesn't seem to include this feature (even though the plugin documentation indicates otherwise). I see in JIRA that this feature is deemed not ye

Maven Enforcer Plugin

2008-01-10 Thread Hilco Wijbenga
I ran into some issues with the Maven Enforcer plugin. Since I'm using the latest and greatest straight from Subversion I didn't want to create a JIRA ticket without first making sure that that would be helpful. Given that 1.0-alpha-3 doesn't support requirePluginVersions I

maven-enforcer-plugin

2007-03-19 Thread Brian E. Fox
There is a new plugin that I'd like to get some feedback on, particularly on non-windows os's and the unit tests. The maven-enforcer-plugin picks up where leaves off and allows control over the maven, jdk and os versions of a build. This plugin was initially conceived h

maven-enforcer-plugin

2014-06-29 Thread Karl Heinz Marbaise
Hi, i wan't to go with a release (presumably 1.4) within the next two weeks... Is there something which you would like to integrate that release...so please raise your hand... Kind regards Karl-Heinz Marbaise - To unsubscrib

RE: Maven Enforcer Plugin

2007-09-18 Thread Brian E. Fox
lto:[EMAIL PROTECTED] Sent: Monday, September 17, 2007 9:04 PM To: Maven Developers List Subject: Maven Enforcer Plugin Hi all, The enforcer plugin has a powerful feature that checks whether the POM lists a version for every plugin used. The current version (1.0-alpha-3) doesn't seem to inclu

RE: Maven Enforcer Plugin

2008-01-10 Thread Brian E. Fox
e- From: Hilco Wijbenga [mailto:[EMAIL PROTECTED] Sent: Thursday, January 10, 2008 8:06 PM To: Maven Developers List Subject: Maven Enforcer Plugin I ran into some issues with the Maven Enforcer plugin. Since I'm using the latest and greatest straight from Subversion I didn't want to c

Re: Maven Enforcer Plugin

2008-01-10 Thread Hilco Wijbenga
Hi Brian, On Jan 10, 2008 5:40 PM, Brian E. Fox <[EMAIL PROTECTED]> wrote: > The enforcer plugin requirePluginVersions rule intentionally scans > everything in your pom inheritance to see anything that isn't defined. > This also includes things you haven't declared but are being used by the > stan

RE: Maven Enforcer Plugin

2008-01-10 Thread Brian E. Fox
Hilco Wijbenga [mailto:[EMAIL PROTECTED] Sent: Thursday, January 10, 2008 9:29 PM To: Maven Developers List Subject: Re: Maven Enforcer Plugin Hi Brian, On Jan 10, 2008 5:40 PM, Brian E. Fox <[EMAIL PROTECTED]> wrote: > The enforcer plugin requirePluginVersions rule intentionally scans

Re: Maven Enforcer Plugin

2008-01-11 Thread Hilco Wijbenga
On Jan 10, 2008 6:33 PM, Brian E. Fox <[EMAIL PROTECTED]> wrote: > Hilco, I'll have to take a deeper look, it's possible that I missed some > other cases. I had to manually read and interpret the poms since I > couldn't get them unmolested from the core. Can you open a jira and > attach a sample so

Re: maven-enforcer-plugin

2007-03-19 Thread Jason Dillon
n, particularly on non-windows os's and the unit tests. The maven-enforcer-plugin picks up where leaves off and allows control over the maven, jdk and os versions of a build. This plugin was initially conceived here: http://www.nabble.com/Control-of-maven-using-prerequisites- tf3231

Re: maven-enforcer-plugin

2007-03-19 Thread Jason Dillon
expression? --jason On Mar 19, 2007, at 9:04 PM, Brian E. Fox wrote: There is a new plugin that I'd like to get some feedback on, particularly on non-windows os's and the unit tests. The maven-enforcer-plugin picks up where leaves off and allows control over the maven, jdk and os

RE: maven-enforcer-plugin

2007-03-20 Thread Brian E. Fox
stuff falls into the same boat, why reinvent a syntax when one already exists? -Original Message- From: Jason Dillon [mailto:[EMAIL PROTECTED] On Behalf Of Jason Dillon Sent: Tuesday, March 20, 2007 12:14 AM To: Maven Developers List Subject: Re: maven-enforcer-plugin Seems a wee b

Re: maven-enforcer-plugin

2007-03-20 Thread Jason Dillon
On Mar 20, 2007, at 5:14 AM, Brian E. Fox wrote: Come, on - enforcer:enforce just sounds cool. Ya, but its not terribly descriptive :-P I actually started in this direction, and the code to check both versions was nearly identical. After I thought about it for a while, I thought that these t

RE: maven-enforcer-plugin

2007-03-20 Thread Brian E. Fox
>Personally I have not problem adding extra execution per thing >I want to enforce. IMO that is much clearer and simplifies >the implementing mojo. Potentially yes, but it's also a performance issue invoking the plugin extra times. In my situation, I have about 100+ modules that would be doin

Re: maven-enforcer-plugin

2007-03-20 Thread Jason Dillon
On Mar 20, 2007, at 4:19 PM, Brian E. Fox wrote: Personally I have not problem adding extra execution per thing I want to enforce. IMO that is much clearer and simplifies the implementing mojo. Potentially yes, but it's also a performance issue invoking the plugin extra times. In my situation,

Re: maven-enforcer-plugin

2007-03-21 Thread Shane Isbell
Hi Jason, The general approach sounds good. A large part of the NMaven project deals with matching of platform capabilities. The pattern includes: public interface ExecutableMatchPolicy { /** * Returns true if ExecutableCapability matches the policy implementation, otherwise returns fals

Re: maven-enforcer-plugin

2007-03-21 Thread Jason Dillon
Hey, this occurred to me last night... Why not have one goal, enforcer:enforce, then abstract the things to enforce into rules... public interface EnforcementRule { void execute(); } And then configure... ... ... [1.3,1.6]

Re: maven-enforcer-plugin

2007-03-21 Thread Wayne Fay
I like this approach better as well... Seems very natural. Wayne On 3/21/07, Jason Dillon <[EMAIL PROTECTED]> wrote: Hey, this occurred to me last night... Why not have one goal, enforcer:enforce, then abstract the things to enforce into rules... public interface EnforcementRule { void e

RE: maven-enforcer-plugin

2007-03-21 Thread Brian E. Fox
Yes, me too. -Original Message- From: Wayne Fay [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 21, 2007 2:20 PM To: Maven Developers List Subject: Re: maven-enforcer-plugin I like this approach better as well... Seems very natural. Wayne On 3/21/07, Jason Dillon <[EMAIL PROTEC

Re: maven-enforcer-plugin

2007-03-21 Thread Andrew Williams
Much better - properly extensible too :) Andy On 21 Mar 2007, at 18:13, Jason Dillon wrote: Hey, this occurred to me last night... Why not have one goal, enforcer:enforce, then abstract the things to enforce into rules... public interface EnforcementRule { void execute(); } And then

Re: maven-enforcer-plugin

2007-03-21 Thread Jason Dillon
My guess is that the EnforcementRule interface might need to allow some context to be passed in, since its not really easy to get @component or @parameter expression="" stuff into a child config object IIRC. Also, probably should throw Exception, to free the rule from having to worry about

RE: maven-enforcer-plugin

2007-03-29 Thread Brian E. Fox
vered. A snapshot of 1.0-alpha-1 has also been deployed for testing. (I believe Geronimo is already using it) http://maven.apache.org/plugins/maven-enforcer-plugin (just deployed, may take a while to refresh) [1] http://www.nabble.com/maven-enforcer-plugin-tf3431452s177.html#a9565974 [2]

Re: maven-enforcer-plugin

2007-03-29 Thread Jason Dillon
ng it) http://maven.apache.org/plugins/maven-enforcer-plugin (just deployed, may take a while to refresh) [1] http://www.nabble.com/maven-enforcer-plugin- tf3431452s177.html#a9565974 [2] http://www.nabble.com/Maven-Lint-tf3462956s177.html#a9661545 -Original Message- From: Brian E. Fox [

Re: maven-enforcer-plugin

2007-03-29 Thread Jason Dillon
is already using it) http://maven.apache.org/plugins/maven-enforcer-plugin (just deployed, may take a while to refresh) [1] http://www.nabble.com/maven-enforcer-plugin- tf3431452s177.html#a9565974 [2] http://www.nabble.com/Maven-Lint-tf3462956s177.html#a9661545 -Original Message

RE: maven-enforcer-plugin

2007-03-30 Thread Brian E. Fox
al Message- From: Jason Dillon [mailto:[EMAIL PROTECTED] On Behalf Of Jason Dillon Sent: Friday, March 30, 2007 3:43 AM To: Maven Developers List Subject: Re: maven-enforcer-plugin I've no idea what is wrong... though I didn't look to hard. I rolled back Geronimo to use 1.0-alpha-1-200703

Re: maven-enforcer-plugin

2007-03-30 Thread Jerome Lacoste
On 3/30/07, Brian E. Fox <[EMAIL PROTECTED]> wrote: I know what changed, but not why it's broken yet. I changed the Java rule a little to support the build number of java instead of just 3 digits like before. The parsing is correct according to the unit tests, but perhaps the version ranging isn'

RE: maven-enforcer-plugin

2007-03-30 Thread Brian E. Fox
List Subject: Re: maven-enforcer-plugin On 3/30/07, Brian E. Fox <[EMAIL PROTECTED]> wrote: > I know what changed, but not why it's broken yet. I changed the Java > rule a little to support the build number of java instead of just 3 > digits like before. The parsing is corr

RE: maven-enforcer-plugin

2007-04-02 Thread Brian E. Fox
Ok, a little more refactoring. The Custom rules can now get to the ExpressionEvaluator so they can get pretty much anything a plugin could get. The sites are updated to contain info about the standard rules and the custom rule creation: http://maven.apache.org/plugins/maven-enforcer-plugin/ http

Re: maven-enforcer-plugin

2007-04-02 Thread Jerome Lacoste
: http://maven.apache.org/plugins/maven-enforcer-plugin/ http://maven.apache.org/shared/maven-enforcer-rule-api/index.html I'll let this linger for a day or so and then call a vote if nothing turns up. - typo in the usage.html -> - would there be a way to make sure the enforcer runs f

Re: maven-enforcer-plugin

2007-04-03 Thread Jerome Lacoste
dated to contain info about the standard rules and > the custom rule creation: > http://maven.apache.org/plugins/maven-enforcer-plugin/ > http://maven.apache.org/shared/maven-enforcer-rule-api/index.html > > I'll let this linger for a day or so and then call a vote if noth

RE: maven-enforcer-plugin

2007-04-03 Thread Brian E. Fox
>some more feedback: >* Is that useful ? >[WARNING]None I'll remove that, not sure where it's from. >* enforce-one mojo attached to verify phase. I would have preferred >the build to fail as early as possible if it is to tell me that I am >using the wrong JDK/maven version... Shouldn't we le

Re: maven-enforcer-plugin

2007-04-03 Thread Jerome Lacoste
On 4/3/07, Brian E. Fox <[EMAIL PROTECTED]> wrote: >some more feedback: >* Is that useful ? >[WARNING]None I'll remove that, not sure where it's from. More explicitly: [INFO] Used undeclared dependencies: [WARNING]None >* enforce-one mojo attached to verify phase. I would have pre

RE: maven-enforcer-plugin

2007-04-03 Thread Brian E. Fox
>More explicitly: >[INFO] Used undeclared dependencies: >[WARNING]None Ah, that's the dependency plugin. Yes I already fixed that but not before it was staged and a vote called. > I confused verify with validate so I'll change that. I thought you could > bind it to another phase if you want,

Re: maven-enforcer-plugin

2007-04-03 Thread Jason Dillon
ExpressionEvaluator so they can get pretty much anything a plugin could get. The sites are updated to contain info about the standard rules and the custom rule creation: http://maven.apache.org/plugins/maven-enforcer-plugin/ http://maven.apache.org/shared/maven-enforcer-rule-api/index.html I'l

RE: maven-enforcer-plugin

2007-04-03 Thread Brian E. Fox
ntil we can be relatively sure the interface for the rules won't change. -Original Message- From: Jason Dillon [mailto:[EMAIL PROTECTED] On Behalf Of Jason Dillon Sent: Tuesday, April 03, 2007 3:51 PM To: Maven Developers List Subject: Re: maven-enforcer-plugin * * * Is it close

Re: maven-enforcer-plugin

2007-04-03 Thread Jason Dillon
y, April 03, 2007 3:51 PM To: Maven Developers List Subject: Re: maven-enforcer-plugin * * * Is it close to time for a release of 1.0-alpha-1 of this puppy yet? --jason On Apr 2, 2007, at 7:31 PM, Brian E. Fox wrote: Ok, a little more refactoring. The Custom rules can now get to the Express

Re: maven-enforcer-plugin

2007-04-03 Thread Jerome Lacoste
On 4/3/07, Brian E. Fox <[EMAIL PROTECTED]> wrote: > The Require OS Version rules docs is using os instead of >require (or require-once). Good catch. I'll make that change. > Is it close to time for a release of 1.0-alpha-1 of this puppy yet? Getting there. I want to explore Jerome's comments

RE: maven-enforcer-plugin

2007-04-03 Thread Brian E. Fox
te [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 03, 2007 7:05 PM To: Maven Developers List Subject: Re: maven-enforcer-plugin On 4/3/07, Brian E. Fox <[EMAIL PROTECTED]> wrote: > > The Require OS Version rules docs is using os instead of > > >require (or require-once). > &

RE: maven-enforcer-plugin

2014-06-29 Thread Martin Gainty
g? Running org.apache.maven.doxia.site.decoration.inheritance.DecorationModelInheritenceAssemblerTest DecorationModelInheritenceAssemblerTest seems to hang for about an hour? 3)doxias was set to MaxJdkVersion of 5 here are the rules for maxJdkVersion maven-enforcer-plugin enforce-bytecode-version

Re: maven-enforcer-plugin

2014-06-29 Thread Karl Heinz Marbaise
our? So why didn't you raise a hand during the release vote of DOXIA ? Or why didn't you create an issue for that and add log files for further analysis ? 3)doxias was set to MaxJdkVersion of 5 here are the rules for maxJdkVersion

Releasing Maven enforcer plugin

2019-01-16 Thread Enrico Olivelli
An user is asking for a release of the enforcer plugin https://github.com/apache/maven-enforcer/pull/36#issuecomment-447238729 I can prepare the release Thoughts? Enrico -- -- Enrico Olivelli

[ANN] Maven Enforcer Plugin 1.0

2010-11-08 Thread Brian Fox
The Maven team is pleased to announce the release of the Maven Enforcer Plugin, version 1.0 Maven Enforcer Plugin - The Loving Iron Fist of Maven™ The Enforcer plugin provides goals to control certain environmental constraints such as Maven version, JDK version and OS family along with many more

Re: Releasing Maven enforcer plugin

2019-01-16 Thread Stephen Connolly
+1 On Wed, 16 Jan 2019 at 12:56, Enrico Olivelli wrote: > An user is asking for a release of the enforcer plugin > > https://github.com/apache/maven-enforcer/pull/36#issuecomment-447238729 > > I can prepare the release > > Thoughts? > Enrico > -- > > > -- Enrico Olivelli >

Re: Releasing Maven enforcer plugin

2019-01-16 Thread Robert Scholte
Just know that as long as MENFORCER-267 is not fixed, it must be a milestone. thanks, Robert [1] https://issues.apache.org/jira/browse/MENFORCER-267 On Wed, 16 Jan 2019 14:32:33 +0100, Stephen Connolly wrote: +1 On Wed, 16 Jan 2019 at 12:56, Enrico Olivelli wrote: An user is ask

Re: Releasing Maven enforcer plugin

2019-01-16 Thread Sylwester Lachiewicz
We have a few PRs on Github from community, maybe we can try to review and include also? +1 for release BR Sylwester W dniu śr., 16.01.2019 o 14:32 Stephen Connolly < stephen.alan.conno...@gmail.com> napisał(a): > +1 > > On Wed, 16 Jan 2019 at 12:56, Enrico Olivelli wrote: > > > An user is ask

Re: Releasing Maven enforcer plugin

2019-01-16 Thread Hervé BOUTEMY
need to see what to do with still opened issues: https://issues.apache.org/jira/projects/MENFORCER/versions/12330768 Regards, Hervé Le mercredi 16 janvier 2019, 13:56:30 CET Enrico Olivelli a écrit : > An user is asking for a release of the enforcer plugin > > https://github.com/apache/maven-en

Re: Releasing Maven enforcer plugin

2019-01-17 Thread Tibor Digana
To lookup easy or fast fixes, and +1 to perform a release then. T On Wed, Jan 16, 2019 at 1:56 PM Enrico Olivelli wrote: > An user is asking for a release of the enforcer plugin > > https://github.com/apache/maven-enforcer/pull/36#issuecomment-447238729 > > I can prepare the release > > Thoughts

Re: Releasing Maven enforcer plugin

2019-01-17 Thread Gabriel Belingueres
I've made progress with the m-dependency-tree [1] shared library which should help unblock some issues in enforcer. It needs review though (and a release) [1] https://issues.apache.org/jira/browse/MSHARED-788 El jue., 17 de ene. de 2019 06:25, Tibor Digana escribió: > To lookup easy or fast fix

Re: Releasing Maven enforcer plugin

2019-01-17 Thread Robert Scholte
Hi Gabriel, I think you missed the message that this code doesn't belong to m-dependency-tree, but to m-artifact-transfer. Would be great if you could move the code. thanks, Robert On Thu, 17 Jan 2019 16:13:15 +0100, Gabriel Belingueres wrote: I've made progress with the m-dependency-t

Re: Releasing Maven enforcer plugin

2019-01-18 Thread Gabriel Belingueres
Will move it. Meanwhile, +1 for another milestone release of enforcer. El jue., 17 de ene. de 2019 14:43, Robert Scholte escribió: > Hi Gabriel, > > I think you missed the message that this code doesn't belong to > m-dependency-tree, but to m-artifact-transfer. > Would be great if you could move

Re: Releasing Maven enforcer plugin

2019-02-22 Thread Enrico Olivelli
Hi folks, I am scanning the list of open JIRAs, there are a bunch of 'In progress' JIRA, most of them are assigned to Karl Jenkins builds are broken since we have added JDK12 [ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.7.0:compile (default-compile) on project e

Re: Releasing Maven enforcer plugin

2019-02-22 Thread Gabriel Belingueres
+1 all 3 points. Regards, Gabriel El vie., 22 de feb. de 2019 a la(s) 18:17, Enrico Olivelli ( eolive...@gmail.com) escribió: > Hi folks, > I am scanning the list of open JIRAs, > there are a bunch of 'In progress' JIRA, most of them are assigned to Karl > > Jenkins builds are broken since we ha

Re: Releasing Maven enforcer plugin

2019-02-24 Thread Olivier Lamy
3 * +1 On Sat, 23 Feb 2019 at 07:17, Enrico Olivelli wrote: > Hi folks, > I am scanning the list of open JIRAs, > there are a bunch of 'In progress' JIRA, most of them are assigned to Karl > > Jenkins builds are broken since we have added JDK12 > > [ERROR] Failed to execute goal > org.apache.mav

Re: Releasing Maven enforcer plugin

2019-02-24 Thread Karl Heinz Marbaise
Hi Enrico, On 22.02.19 22:17, Enrico Olivelli wrote: Hi folks, I am scanning the list of open JIRAs, there are a bunch of 'In progress' JIRA, most of them are assigned to Karl Jenkins builds are broken since we have added JDK12 [ERROR] Failed to execute goal org.apache.maven.plugins:maven-comp

Maven Enforcer Plugin Release Request

2012-11-20 Thread Josh Beitelspacher
Would it be possible to get a new release of the maven enforcer plugin sometime soon? I've been eagerly awaiting a release with the fix for http://jira.codehaus.org/browse/MENFORCER-135. Currently my build output is 2139 lines, of which 1701 lines (~80%) is INFO messages from the enforcer p

[vote] release maven enforcer plugin 1.0

2010-11-02 Thread Brian Fox
Hi, Changelog: http://jira.codehaus.org/secure/ReleaseNote.jspa?projectId=11530&version=13616 Staging repo: https://repository.apache.org/content/repositories/maven-009/ Staging site: http://people.apache.org/~brianf/enforcer-stage/plugins/maven-enforcer-plugin/ Guide to testing st

Q: Maven-Enforcer-Plugin - Release 1.3.2 ?

2014-01-24 Thread Karl Heinz Marbaise
Hi, i just want to know on what basis releases will be created... Currently i would suggest to create a Release 1.3.2 of the maven-enforcer-plugin... In Jira the list http://jira.codehaus.org/secure/ReleaseNote.jspa?projectId=11530&version=19935 for 1.3.2 contains a number of bug f

[ANN] Maven Enforcer Plugin 1.1.1 Released

2012-07-15 Thread Barrie Treloar
The Maven team is pleased to announce the release of the Maven Enforcer Plugin, version 1.1.1 This plugin provides goals to control certain environmental constraints such as Maven version, JDK version and OS family along with many more standard rules and user created rules. http

Re: Maven Enforcer Plugin Release Request

2012-11-20 Thread Jason van Zyl
2012, at 11:54 AM, Josh Beitelspacher wrote: > Would it be possible to get a new release of the maven enforcer plugin > sometime soon? I've been eagerly awaiting a release with the fix for > http://jira.codehaus.org/browse/MENFORCER-135. > > Currently my build output is 2139 line

Re: Maven Enforcer Plugin Release Request

2012-11-20 Thread Benson Margulies
fixfor=18491&pid=11530&reset=true&show=View+%26gt%3B%26gt%3B > > On Nov 20, 2012, at 11:54 AM, Josh Beitelspacher wrote: > >> Would it be possible to get a new release of the maven enforcer plugin >> sometime soon? I've been eagerly awaiting a re

Re: Maven Enforcer Plugin Release Request

2012-11-20 Thread Hervé BOUTEMY
CER-144 to the next version so I can > stage a release? > > https://jira.codehaus.org/secure/IssueNavigator.jspa?fixfor=18491&pid=11530&; > reset=true&show=View+%26gt%3B%26gt%3B > On Nov 20, 2012, at 11:54 AM, Josh Beitelspacher wrote: > > Would it be possible to get a n

Re: Maven Enforcer Plugin Release Request

2012-11-20 Thread Jason van Zyl
aus.org/secure/IssueNavigator.jspa?fixfor=18491&pid=11530&; >> reset=true&show=View+%26gt%3B%26gt%3B >> On Nov 20, 2012, at 11:54 AM, Josh Beitelspacher wrote: >>> Would it be possible to get a new release of the maven enforcer plugin >>> sometime soon? I'

Re: Maven Enforcer Plugin Release Request

2012-11-20 Thread Jason van Zyl
igator.jspa?fixfor=18491&pid=11530&reset=true&show=View+%26gt%3B%26gt%3B >> >> On Nov 20, 2012, at 11:54 AM, Josh Beitelspacher wrote: >> >>> Would it be possible to get a new release of the maven enforcer plugin >>> sometime soon? I've been eager

[ANN] Maven Enforcer Plugin 1.2 Released

2012-12-03 Thread Paul Gier
The Maven team is pleased to announce the release of the Maven Enforcer Plugin, version 1.2 The enforcer plugin provides goals to control certain environmental constraints such as Maven version, JDK version and OS family along with many more standard rules and user created rules. http

[VOTE] maven-enforcer-plugin:1.0-alpha-2

2007-04-10 Thread Brian E. Fox
This release fixes just one critical issue: Release Notes - Maven 2.x Enforcer Plugin - Version 1.0-alpha-2 ** Bug * [MENFORCER-1] - plugin fails on jdk < 1.5 The deployments are staged here: http://people.apache.org/~brianf/staging-repository

[ANN] Maven Enforcer Plugin 1.0-beta-1

2009-02-25 Thread Brian Fox
The Maven team is pleased to announce the release of the Maven Enforcer Plugin, version 1.0-beta-1 The Enforcer plugin is used to fail a build if certain constraints are not met. There are too many standard rules to describe here, but check out the site for more details: http://maven.apache.org

Re: [vote] release maven enforcer plugin 1.0

2010-11-02 Thread Jason Dillon
ite: > http://people.apache.org/~brianf/enforcer-stage/plugins/maven-enforcer-plugin/ > > Guide to testing staged releases: > http://maven.apache.org/guides/development/guide-testing-releases.html > > Vote open fo

Re: [vote] release maven enforcer plugin 1.0

2010-11-02 Thread chemit
aging site: > http://people.apache.org/~brianf/enforcer-stage/plugins/maven-enforcer-plugin/ > > Guide to testing staged releases: > http://maven.apache.org/guides/development/guide-testing-releases.html > &g

Re: [vote] release maven enforcer plugin 1.0

2010-11-02 Thread Rex Hoffman
shame :)). > > Tells use when it is ok ;) > > Any way thanks > >> Hi, >> >> Changelog: >> http://jira.codehaus.org/secure/ReleaseNote.jspa?projectId=11530&version=13616 >> >> Staging repo: >> https://repository.apache.org/content/rep

Re: [vote] release maven enforcer plugin 1.0

2010-11-02 Thread Brian Fox
http://jira.codehaus.org/secure/ReleaseNote.jspa?projectId=11530&version=13616 >> >> Staging repo: >> https://repository.apache.org/content/repositories/maven-009/ >> >> Staging site: >> >> http://people.apache.org/~brianf/enforcer-stage/plugins/maven-enforc

Re: [vote] release maven enforcer plugin 1.0

2010-11-02 Thread Brian Fox
just check and it is not on central, so release can not be test >> at the moment (a shame :)). >> >> Tells use when it is ok ;) >> >> Any way thanks >> >>> Hi, >>> >>> Changelog: >>> >>> http://jira.codehaus.org/secure/Rel

Re: [vote] release maven enforcer plugin 1.0

2010-11-02 Thread Rex Hoffman
gt;> at the moment (a shame :)). >>> >>> Tells use when it is ok ;) >>> >>> Any way thanks >>> >>>> Hi, >>>> >>>> Changelog: >>>> >>>> http://jira.codehaus.org/secure/ReleaseNote.jspa?projec

Re: [vote] release maven enforcer plugin 1.0

2010-11-02 Thread chemit
rg/secure/ReleaseNote.jspa?projectId=11530&version=13616 > >> > >> Staging repo: > >> https://repository.apache.org/content/repositories/maven-009/ > >> > >> Staging site: > >> > >> http://people.apache.org/~brianf/enforcer-stage/p

Re: Q: Maven-Enforcer-Plugin - Release 1.3.2 ?

2014-01-24 Thread Stephen Connolly
eated... > > Currently i would suggest to create a Release 1.3.2 of the > maven-enforcer-plugin... > > In Jira the list > http://jira.codehaus.org/secure/ReleaseNote.jspa? > projectId=11530&version=19935 > > for 1.3.2 contains a number of bug fixes... > > Ar

Re: Q: Maven-Enforcer-Plugin - Release 1.3.2 ?

2014-01-24 Thread Robert Scholte
be created... Currently i would suggest to create a Release 1.3.2 of the maven-enforcer-plugin... In Jira the list http://jira.codehaus.org/secure/ReleaseNote.jspa?projectId=11530&version=19935 for 1.3.2 contains a number of bug fixes... Are there any objections to get a release 1.3.2 ou

Re: Q: Maven-Enforcer-Plugin - Release 1.3.2 ?

2014-01-24 Thread Mirko Friedenhagen
> > Op Fri, 24 Jan 2014 10:22:59 +0100 schreef Karl Heinz Marbaise > : > > >> Hi, >> >> i just want to know on what basis releases will be created... >> >> Currently i would suggest to create a Release 1.3.2 of the >> maven-enforcer-plugin... &g

Re: Q: Maven-Enforcer-Plugin - Release 1.3.2 ?

2014-01-24 Thread Mirko Friedenhagen
4 10:22:59 +0100 schreef Karl Heinz Marbaise >> : >> >> >>> Hi, >>> >>> i just want to know on what basis releases will be created... >>> >>> Currently i would suggest to create a Release 1.3.2 of the >>> maven-enforcer-plugin..

Re: Q: Maven-Enforcer-Plugin - Release 1.3.2 ?

2014-01-24 Thread Robert Scholte
rowse/MENFORCER-161 Op Fri, 24 Jan 2014 10:22:59 +0100 schreef Karl Heinz Marbaise : Hi, i just want to know on what basis releases will be created... Currently i would suggest to create a Release 1.3.2 of the maven-enforcer-plugin... In Jira the list http://jira.codehaus.org/secure/ReleaseNote

Re: Q: Maven-Enforcer-Plugin - Release 1.3.2 ?

2014-01-24 Thread Karl Heinz Marbaise
+0100 schreef Karl Heinz Marbaise : Hi, i just want to know on what basis releases will be created... Currently i would suggest to create a Release 1.3.2 of the maven-enforcer-plugin... In Jira the list http://jira.codehaus.org/secure/ReleaseNote.jspa?projectId=11530&version=19935 for

Re: Q: Maven-Enforcer-Plugin - Release 1.3.2 ?

2014-01-24 Thread Mirko Friedenhagen
;>> On Fri, Jan 24, 2014 at 3:53 PM, Robert Scholte >>>> wrote: >>>> >>>>> Karl Heinz, >>>>> >>>>> you might hit MENFORCER-161[1], unless Hervé did a fix regarding the >>>>> scm-publish on this project. >>

Re: Q: Maven-Enforcer-Plugin - Release 1.3.2 ?

2014-01-25 Thread Hervé BOUTEMY
4 10:22:59 +0100 schreef Karl Heinz Marbaise > > : > > Hi, > > > > i just want to know on what basis releases will be created... > > > > Currently i would suggest to create a Release 1.3.2 of the > > maven-enforcer-plugin... > > > > In Jir

Re: Q: Maven-Enforcer-Plugin - Release 1.3.2 ?

2014-01-25 Thread Karl Heinz Marbaise
Hello Mirko, > Hello, I am afraid the only documentation is in the ticket, right now. I could try to find a place this evening and submit a patch. It would be great if you find the time, but take your time, cause there are other issues which have to be fixed first I have created an issu

Re: Q: Maven-Enforcer-Plugin - Release 1.3.2 ?

2014-01-25 Thread Karl Heinz Marbaise
Hi Hervé, > I just fixed it Thanks. while testing, I found that there is an IT failure with Maven 3.1.1: I added a Jenkins job to reproduce, and it failed as expected Seen it...I have created a separate issue for it http://jira.codehaus.org/browse/MENFORCER-181 But unfortunately i can't t

Re: Q: Maven-Enforcer-Plugin - Release 1.3.2 ?

2014-01-25 Thread Mirko Friedenhagen
Hello Karl-Heinz, I added a patch at the MENFORCER-182. Regards Mirko -- http://illegalstateexception.blogspot.com/ https://github.com/mfriedenhagen/ (http://osrc.dfm.io/mfriedenhagen) https://bitbucket.org/mfriedenhagen/ On Sat, Jan 25, 2014 at 1:39 PM, Karl Heinz Marbaise wrote: > Hello Mirko

Maven-enforcer-plugin dependency convergence verbose logs

2019-05-17 Thread Jon Harper
Hi list, using maven-enforcer-plugin dependency converge rule, the logs of the trees of the conflicting dependencies represent 7000 lines out of the 12000 lines of logs of my build. Would it be possible to allow configuring the verbosity of the plugin ? Either with an explicit configuration flag

[ANN] Apache Maven Enforcer Plugin 3.2.1 Released

2023-01-31 Thread Slawomir Jaranowski
The Apache Maven team is pleased to announce the release of the Apache Maven Enforcer Plugin, version 3.2.1 This plugin provides goals to control certain environmental constraints such as Maven version, JDK version and OS family along with many more built-in rules and user created rules. https

[ANN] Apache Maven Enforcer Plugin 3.3.0 Released

2023-04-04 Thread Slawomir Jaranowski
The Apache Maven team is pleased to announce the release of the Apache Maven Enforcer Plugin, version 3.3.0 This plugin provides goals to control certain environmental constraints such as Maven version, JDK version and OS family along with many more built-in rules and user created rules. https

[ANN] Apache Maven Enforcer Plugin 3.4.0 Released

2023-08-22 Thread Slawomir Jaranowski
The Apache Maven team is pleased to announce the release of the Apache Maven Enforcer Plugin, version 3.4.0 This plugin provides goals to control certain environmental constraints such as Maven version, JDK version and OS family along with many more built-in rules and user created rules. https

[ANN] Apache Maven Enforcer Plugin 3.4.1 Released

2023-09-10 Thread Slawomir Jaranowski
The Apache Maven team is pleased to announce the release of the Apache Maven Enforcer Plugin, version 3.4.1 This plugin provides goals to control certain environmental constraints such as Maven version, JDK version and OS family along with many more built-in rules and user created rules. https

[ANN] Apache Maven Enforcer Plugin 3.5.0 Released

2024-05-30 Thread Slawomir Jaranowski
The Apache Maven team is pleased to announce the release of the Apache Maven Enforcer Plugin, version 3.5.0 This plugin provides goals to control certain environmental constraints such as Maven version, JDK version and OS family along with many more built-in rules and user created rules. https

[VOTE] Release Maven Enforcer Plugin version 1.2

2012-07-05 Thread Barrie Treloar
.org/content/repositories/maven-033/ https://repository.apache.org/content/repositories/maven-033/org/apache/maven/enforcer/enforcer/1.2/enforcer-1.2-source-release.zip Staging site: http://maven.apache.org/plugins/maven-enforcer-plugin-1.2/ (This doesn't appear to have worked...) Guide to testing stag

Re: [ANN] Maven Enforcer Plugin 1.1.1 Released

2012-07-16 Thread Tony Chemit
users mailing-list where is the version. So waiting that everything to be synched is a good pratice. I will have a look if it is not in release procedure. Any way thanks for the release;) cheers, tony. - > The Maven team is pleased to announce the release of the Maven > Enforcer Plugin, v

Re: [ANN] Maven Enforcer Plugin 1.1.1 Released

2012-07-16 Thread Anders Hammar
se procedure. > > Any way thanks for the release;) > > cheers, > > tony. > > - >> The Maven team is pleased to announce the release of the Maven >> Enforcer Plugin, version 1.1.1 >> >> This plugin provides goals to control certain environmental >> constr

Re: [ANN] Maven Enforcer Plugin 1.1.1 Released

2012-07-16 Thread Barrie Treloar
On Mon, Jul 16, 2012 at 6:48 PM, Tony Chemit wrote: > On Mon, 16 Jul 2012 10:07:25 +0930 > Barrie Treloar wrote: > > Hi Barrie, > > FYI, could you wait that everything is synch before sending release > announcement: > > - artifacts synch to maven central > - site synch > > I just get annoyed abo

Re: [ANN] Maven Enforcer Plugin 1.1.1 Released

2012-07-16 Thread Barrie Treloar
On Mon, Jul 16, 2012 at 9:13 PM, Barrie Treloar wrote: > The site one might be, but there is nothing about Maven Central, I've > already pinged the PMC to find out what the sync times are. Brian says "The sync into central staging from rao occurs every 4 hours. There is a separate hourly schedul

Re: [ANN] Maven Enforcer Plugin 1.1.1 Released

2012-07-17 Thread Barrie Treloar
On Tue, Jul 17, 2012 at 6:15 AM, Barrie Treloar wrote: > On Mon, Jul 16, 2012 at 9:13 PM, Barrie Treloar wrote: > >> The site one might be, but there is nothing about Maven Central, I've >> already pinged the PMC to find out what the sync times are. > > Brian says > "The sync into central staging

Re: Release of maven-enforcer-plugin 1.2

2012-11-05 Thread Mirko Friedenhagen
Hello, I take it no one is eager to do a release, then :-). So I will prepare an in-house vendor-release :-). Regards Mirko On Sun, Oct 28, 2012 at 8:42 PM, Mirko Friedenhagen wrote: > Hello, > > I just wanted to know whether a release of 1.2 is planned anytime > soon. Especially http://jira.c

[ANN] Apache Maven Enforcer Plugin 1.3 Released

2013-06-30 Thread Robert Scholte
The Apache Maven team is pleased to announce the release of the Maven Enforcer Plugin, version 1.3 The Enforcer plugin provides goals to control certain environmental constraints such as Maven version, JDK version and OS family along with many more standard rules and user created rules

[ANN] Apache Maven Enforcer Plugin 1.3.1 Released

2013-07-18 Thread Robert Scholte
The Apache Maven team is pleased to announce the release of the Apache Maven Enforcer Plugin, version 1.3.1 This plugin provides goals to control certain environmental constraints such as Maven version, JDK version and OS family along with many more standard rules and user created rules

[maven-enforcer-plugin] Request to release 3.0.1

2022-05-05 Thread Filipe Roque
Hi, Can we get a release of maven-enforcer-plugin 3.0.1? https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12341008&styleName=&projectId=12317520&Create=Create&atl_token=A5KQ-2QAV-T4JA-FDED_4b71e7b6002694ec2291576c62bf57a38bce20b0_lin I'm interested in a r

  1   2   3   >