Re: Build once, deploy everywhere

2014-09-10 Thread Stephen Connolly
What you want to do is have your packaged software be independent of the environment it is deployed to. That way you know by checking the SHA1 of the artifact you can know it was the one that was tested by QA. So what you do is have your application read its configuration from an external source.

Re: Plugins to extend the APT format? (For use with the Maven Site plugin)

2014-08-14 Thread Stephen Connolly
*Not answering your question* I think we have grown to favour moving away from APT and towards Markdown or Asciidoc as a format at least on the Maven team (note that we do not have good tooling for Asciidoc yet) most of our new documentation is driven through Markdown. I think there are really two

Re: JOB | Permanent Java Developer (London, UK)

2014-08-11 Thread Stephen Connolly
Please use j...@apache.org for jobs postings. Please do not abuse individual project lists On 11 August 2014 08:08, James Tobin wrote: > Hello, I'm working with an employer that is looking to hire a > permanent core java developer to work on their in-house built p2p > middleware. Relevant expe

Re: In a multi-module Maven project, what could make the parent project not to be a part of the reactor?

2014-08-07 Thread Stephen Connolly
* When you use -pl to restrict the reactor, * when you use -f to build a specific pom * When the parent is not at the specified * etc Many reasons On 7 August 2014 12:29, Behrang Saeedzadeh wrote: > I was just reading the source code for the [Versions Maven Plugin]( > http://mojo.codehaus.org

Re: Best way to use closed-source jars with maven repository

2014-07-28 Thread Stephen Connolly
system is for JAR files that are supposed to be put in the JVM's ext directory or equivalent. You do not want to use system On 28 July 2014 15:43, Steve Cohen wrote: > Sadly, my hopes were not completely fulfilled. > > In spite of specifying the MQ jars as system dependencies with their own >

Re: Best way to use closed-source jars with maven repository

2014-07-25 Thread Stephen Connolly
Never mind... slightly different question. You probably will need to use something like the assembly plugin or the dependency plugin or even antrun to rename the jar files On 25 July 2014 17:25, Stephen Connolly wrote: > > http://developer-blog.cloudbees.com/2013/03/playing-trade-off

Re: Best way to use closed-source jars with maven repository

2014-07-25 Thread Stephen Connolly
http://developer-blog.cloudbees.com/2013/03/playing-trade-offs-with-maven.html On 25 July 2014 17:07, Steve Cohen wrote: > I have a client application that was developed with Websphere MQ. Our > company has a Maven nexus repository. In this repository, we have a place > to store third party j

Re: Why not a forum

2014-07-25 Thread Stephen Connolly
As a member of the Apache Maven PMC, one of my duties is to foster the community AT Apache. That means the mailing lists. If you are looking for an official forum (in the original meaning of the word) to discuss Maven and its usage, then users@m.a.o is the place to do that. We cannot stop people w

Re: Why not a forum

2014-07-22 Thread Stephen Connolly
Apache Policy is that if it didn't happen on the mailing list, it didn't happen. The ASF *is* mailing lists. If you want a forum-like interface there's Nabble... GMail does great structuring and search for me. On 22 July 2014 21:09, james northrup wrote: > bikeshedding > > > On Tue, Jul 22,

Welcome our new VP of Apache Maven, Hervé Boutemy

2014-07-19 Thread Stephen Connolly
The role of VP of maven is more a technical and legal responsibility in that the ASF board requires an officer of the foundation to delegate the powers vested in the PMC to. A few years back, John Casey suggested that we should try rotating this burden amongst the PMC on a yearly-ish basis. I hav

Re: How do you report a maven bug ?

2014-07-10 Thread Stephen Connolly
Yes... there is signup... but you need to go to the root of the JIRA page to see the signup instruction Sign-up for a JIRA account > You will need to create an account in Xircles - > https://xircles.codehaus.org/signup/ - this became necessary to combat > spammers who had automated JIRA signups. >

Re: Remote repositories protocols

2014-07-09 Thread Stephen Connolly
wagon is the extension point to implement additional protocols. You need to register wagon implementations as extensions in order to use them in your pom (or register them as additional dependencies of specific plugins in your pom to use them for a specific plugin) On 9 July 2014 07:42, Eric Corn

Re: Adding Classifiers when building

2014-07-08 Thread Stephen Connolly
though it is usually better to stick to the well known qualifiers: alpha, beta, rc, milestone, etc On 8 July 2014 09:35, Stephen Connolly wrote: > Classifiers are not for what you think they are for... they are for > flagging side artifacts... and in general they should not be used.

Re: Adding Classifiers when building

2014-07-08 Thread Stephen Connolly
Classifiers are not for what you think they are for... they are for flagging side artifacts... and in general they should not be used. A good example of a case for side artifacts is the javadocs.jar. You normally do not depend on the javadocs jar, it is a side artifact for IDEs. If you want to fla

Re: About maven lifecycles

2014-07-07 Thread Stephen Connolly
See my answer here for some of the issues: http://stackoverflow.com/questions/12433120/creating-a-new-phase/12480505#12480505 On 7 July 2014 11:34, Eric Cornely wrote: > Hello, > > I have a few questions about maven lifecycles that you can probably answer. > > I see many articles about modifyin

Re: Problem with iso9660-maven-plugin

2014-07-03 Thread Stephen Connolly
iso9660 limits filenames to 8+3 IIRC. I have not had any reason to maintain that plugin in quite some time. If you have pull requests let me know and I may find some time to investigate, but I'm not making any promises given my current time commitments On 3 July 2014 15:35, Roland Asmann wrote:

Re: AW: AW: Artifact with different sets of dependencies switched by profiles

2014-07-01 Thread Stephen Connolly
And you are going to have the exact same set of issues as with profiles. Maven 3 does not re-interpolate the poms of dependencies IIRC... or at least it is not supposed to... so you only get to control the variables from the parent pom and any inherited dependencies/dependencyManagement not from t

Re: Artifact with different sets of dependencies switched by profiles

2014-06-28 Thread Stephen Connolly
N!!! Allowing people to define dependencies in profiles was one of the biggest mistakes we made in Model Version 4.0.0. The activation rules etc are *never* what they think you are once the dependency is resolved from the local repository cache. Please do no do this stupid thing just bec

Re: site-deploy using wagon-ssh: User input needed

2014-06-24 Thread Stephen Connolly
That's the Jenkins home directory not the user home direcory of the user account that jenkins is running as On 24 June 2014 15:18, Hohl, Gerrit wrote: > Hello Curtis, > > thanks for your reply. > > The Jenkins configuration says that C:\.jenkins is the home directory. > So I created a ".ssh" fo

Re: Complex Maven projects - Tutorials? Books?

2014-06-13 Thread Stephen Connolly
I though I should share two scripts I hacked together when working with multiple aggregation roots from different GIT repositories... The first one I call `mvn-release-all.rb` #!/usr/bin/env ruby require 'nokogiri' want_color = `git config color.ui` $color = case want_color.chomp whe

Re: Controlling order of plugin execution

2014-06-04 Thread Stephen Connolly
wards its users ;-) ) On Wednesday, 4 June 2014, Paul Benedict wrote: > I don't think this existed when I first tried with Maven (my example was > from many moons ago), but this is another tool in my toolbox now. Thank > you! :-) > > > Cheers, > Paul > > > On Wed,

Re: Controlling order of plugin execution

2014-06-04 Thread Stephen Connolly
> > Cheers, > Paul > > > On Wed, Jun 4, 2014 at 3:08 PM, Ron Wheeler < > rwhee...@artifact-software.com > > wrote: > > > "We are not a cult." > > If we already have a "we", we are half way there! > > Just short a charismatic leader an

Re: Controlling order of plugin execution

2014-06-04 Thread Stephen Connolly
On Wednesday, 4 June 2014, Jason van Zyl wrote: > On Jun 4, 2014, at 12:07 PM, Stephen Connolly < > stephen.alan.conno...@gmail.com > wrote: > > > That's usually a sign that you have wandered off The Maven Way™ > > > > No it's not. They have valid po

Re: Controlling order of plugin execution

2014-06-04 Thread Stephen Connolly
On Wednesday, 4 June 2014, Jim Garrison wrote: > > -Original Message- > > From: Stephen Connolly [mailto:stephen.alan.conno...@gmail.com > ] > > Sent: Wednesday, June 04, 2014 9:08 AM > > To: Maven Users List > > Subject: Re: Controlling order of plugin e

Re: Controlling order of plugin execution

2014-06-04 Thread Stephen Connolly
That's usually a sign that you have wandered off The Maven Way™ There are ways back onto the blessed path... they typically involve writing a plugin On 4 June 2014 16:47, jhgnwea wrote: > Paul Benedict wrote > > I agree with Dan. Last I check, IIRC, the order of operations of plugins > > is >

Re: unit tests with multiple oracle, db2 etc

2014-05-24 Thread Stephen Connolly
Well first off, this is really an integration test... So I would switch to have failsafe run the tests: ie add failsafe:integration-test and failsafe:verify to your project's lifecycle (perhaps even in a profile) Then I would use http://maven.apache.org/surefire/maven-failsafe-plugin/integration-t

Re: maven-invoker-plugin: running ITs in parallel?

2014-05-20 Thread Stephen Connolly
Eh you might be able to... you could have the "local repo" that m-i-p "installs" into be a "remote" repo in your settings.xml (along with the mrm repo) and then use ${basedir} in the localrepo path... (Untested) On 20 May 2014 13:08, Baptiste Mathus wrote: > Yup, I know this work is still und

Re: Spring snapshots

2014-05-01 Thread Stephen Connolly
Most likely somewhere in that spring dependency tree is a version range... you could use dependency management to pin that to a non-range version On 1 May 2014 12:58, Alexander Kaiser wrote: > Hi, > > I am trying to understand mavens downloading of snapshots (maven 3.0.4, > vanilla install) > >

Re: Maven sure fire plugin npe problem.

2014-04-27 Thread Stephen Connolly
You signup for an account on xircles.codehaus.org... Effing jira templating does not make it easy to put that notice on the generic login screen so it is hard for people to guess... If you go to jira.codehaus.org you can see the not to use xircles... But sadly nowhere else :-( The curse of the spa

Re: Generating war and Jar from same codebase

2014-04-23 Thread Stephen Connolly
gt; > > /Anders > > > > > >> > >> 1. Any examples on how to write the parent pom referencing the same > >> codebase for the child poms. > >> Will there be a tag for parent pom. I understand that the > >> packaging for parent

Re: Generating war and Jar from same codebase

2014-04-22 Thread Stephen Connolly
On 22 April 2014 01:18, Narayanan K wrote: > Hi > > We have a default pom file with packaging "war" for our codebase. > > From the same code base we also want to generate a normal jar and a > fat jar with dependencies. > > Currently solution that has been implemented is another pom-jar.xml > file

Re: Struggling to release:perform with git and deployer key

2014-04-18 Thread Stephen Connolly
tion established. > >>>> debug1: identity file /srv/jenkins/.ssh/id_rsa type 1 > >>>> ... > >>>> debug1: Authentications that can continue: publickey > >>>> debug1: Next authentication method: publickey > >>>> debug1: Offering R

Re: Struggling to release:perform with git and deployer key

2014-04-18 Thread Stephen Connolly
... ... ... /home/.../.ssh/id_rsa On 18 April 2014 16:27, Thomas Broyer wrote: > I think by default Maven calls the command-line Git, so it uses the > ~/.ssh/id_rsa, and not the configuration from your settings.xml. > I have no idea if what you're trying t

Re: Generated content in generated sites (!)

2014-04-16 Thread Stephen Connolly
On Wednesday, 16 April 2014, wrote: > On Wed, 16 Apr 2014 20:39:40 +0100 > Stephen Connolly > wrote: > > > On Wednesday, 16 April 2014, > > wrote: > > > > I'm not averse to writing a custom plugin, but I'd rather not if it's > > &g

Re: Generated content in generated sites (!)

2014-04-16 Thread Stephen Connolly
On Wednesday, 16 April 2014, wrote: > 'Lo. > > Currently, sites generated for my projects look something like: > > http://mvn.io7m.com/jaux/releases.html > > The releases.html page actually comes from a static releases.xml > file that's generated and inserted into src/site by the shell script >

Re: Why Is Maven Ignoring My Local Repo?

2014-04-15 Thread Stephen Connolly
It's not a local repository. It is a local repository cache. There are files there that record where the artifacts were cached *from*. If the artifact is there but the cache file is not or indicates a different source from the allowed sources for your build, then Maven will ignore the artifact in

Re: Velocity escaping; I can't escape

2014-04-14 Thread Stephen Connolly
could you use a CDATA section? On 14 April 2014 12:46, Benson Margulies wrote: > If a markdown file in my site contains > > path="${bt.root.directory:../../../../..}/lib/rbl-je-lucene-solr-43-2.2.104.jar"/> > > velocity explodes. > > If I add a \ after the $, it does not explode, but the \ re

Re: Hot deployment using jetty 8 and maven

2014-04-10 Thread Stephen Connolly
http://jszip.org/quickstart/index.html Then just modify some .java files and ask your IDE to compile on demand... while in a different window you just leave `mvn jszip:run` open and running. Maven will pick up the .class files and redeploy the webapp. After a while you may run out of permgen and y

Re: Hot deployment using jetty 8 and maven

2014-04-10 Thread Stephen Connolly
That is actually what my jszip.org toolchain provides... though I have neglected it for some time and I don;t think it works with Maven 3.1+ (should work with 3.0.5) and it might not be obvious when reading the docs that its not just about javascript modules but also about .jar modules trans-reacto

Re: Scanning for Projects... before

2014-04-04 Thread Stephen Connolly
There is a *very* hacky way... I hesitate to suggest it... but as you seem stuck! Your "delete" mojo can take a wander through the dependency tree and record the details of all dependencies from the tree that will be affected by the deleting. You will need to do this for the entire set of reactor

Re: maven release-plugin 2.5 bug - releasing snapshots...

2014-03-28 Thread Stephen Connolly
or the new branch (and both should be used for > ongoing development so should be snapshots...) > > /James > > > -Original Message- > > From: Stephen Connolly [mailto:stephen.alan.conno...@gmail.com] > > Sent: 28 March 2014 13:32 > > To: Maven Users List >

Re: maven release-plugin 2.5 bug - releasing snapshots...

2014-03-28 Thread Stephen Connolly
Let me rephrase. The release plugin is designed to make release versions. It is not designed to make -SNAPSHOT versions. It was a bug that it let you specify a -SNAPSHOT version as the release version. The bug has been fixed. On 28 March 2014 13:18, ghostwolf59 wrote: > That's a way to general s

Re: maven release-plugin 2.5 bug - releasing snapshots...

2014-03-28 Thread Stephen Connolly
You do know you are not allowed to release a version containing a -SNAPSHOT don't you? On 28 March 2014 12:23, ghostwolf59 wrote: > Sorry for that - I was just in the process of updating this a simple > copy/paste mistake > > I am using 2.5 when the problem occur - as illustrated on the imag

Re: maven release-plugin 2.5 bug - releasing snapshots...

2014-03-28 Thread Stephen Connolly
On 28 March 2014 11:12, ghostwolf59 wrote: > 2.2.2 Then you are not using version 2.5

Re: properties that are not being resolved

2014-03-25 Thread Stephen Connolly
tution itself. > > Regards, > Henrik Gram > > On Mon, Mar 24, 2014 at 10:38 PM, Stephen Connolly < > stephen.alan.conno...@gmail.com> wrote: > > > Please read my answer to a similar question on Stack Overflow: > > > > > http://stackoverflow.com

Re: properties that are not being resolved

2014-03-24 Thread Stephen Connolly
Please read my answer to a similar question on Stack Overflow: http://stackoverflow.com/questions/14725197/reading-properties-file-from-pom-file-in-maven/14727072#14727072 On 23 March 2014 21:36, Henrik Østerlund Gram wrote: > I stumbled over some rather strange behaviour regarding properties.

Re: Configuring SCM for github

2014-03-19 Thread Stephen Connolly
n https? > > Cheers, Eric > > > On 3/19/2014 12:30 PM, Stephen Connolly wrote: > > On Wednesday, 19 March 2014, Eric Kolotyluk > wrote: > > Now I have > > > https://github.com/kolotyluk/java-file-utilities.git > scm:git:https://github.com/kolotyluk/j

Re: Configuring SCM for github

2014-03-19 Thread Stephen Connolly
On Wednesday, 19 March 2014, Eric Kolotyluk wrote: > Now I have > > > https://github.com/kolotyluk/java-file-utilities.git > scm:git:https://github.com/kolotyluk/java-file-utilities.git connection> > scm:git:https://github.com/kolotyluk/ > java-file-utilities.git I favour the ssh variant of

Re: [Failsafe] How to properly conduct integration tests on executable jar files

2014-03-13 Thread Stephen Connolly
You could use test resource filtering to put the path into a resource file on the test classpath. That way the IDE will pick up the same path. On Thursday, 13 March 2014, Alex Karasulu wrote: > Hello, > > I've got a module that builds an executable jar file using the Maven > Assembly Plugin. I'

Re: Using github as a maven repo

2014-03-05 Thread Stephen Connolly
On Wednesday, 5 March 2014, Olivier Lamy wrote: > Ideologic POV: Perso I'm very happy to download software from various > sources (I believe in linux you can have different sources) > So why we should have only ONE "artifacts source"? I agree that a decentralised scheme is needed. jdc was worki

Re: Using github as a maven repo

2014-03-05 Thread Stephen Connolly
Please please please use central. Every time you host your own public repo a kitten is horribly mutilated by the minions of the underworld. More seriously if anyone adds your repo they impact their build performance as they now have another repo to check artifacts against... It's not a big proble

Re: Re: Status of MRELEASE-835?

2014-03-05 Thread Stephen Connolly
On 5 March 2014 15:27, Thorsten Heit wrote: > Hi Sascha, > > > > [...] > > > I just wanted to know what the actual status is? Is there no need for > such > > > a IMHO usable and CI- and/or build-server friendly feature? Is there > > > anything missing in the issue/patch/description/...? > > > At

Re: doxia-module-markdown 1.5 mixing html and markdown in one file

2014-02-27 Thread Stephen Connolly
t; > > Thanks! > > Raphael > > On Thu, Feb 27, 2014 at 12:23 PM, Stephen Connolly > wrote: > > if you can use a HTML5 tag that isn't it should go through > unmolested. > > > > > > On 27 February 2014 11:22, Stephen Connolly < > stephen.ala

Re: doxia-module-markdown 1.5 mixing html and markdown in one file

2014-02-27 Thread Stephen Connolly
if you can use a HTML5 tag that isn't it should go through unmolested. On 27 February 2014 11:22, Stephen Connolly wrote: > File a bug in JIRA. It looks like doxia core's Xhtml parser is eating the > tags that are being generated by the markdown parser. > > Let me know

Re: doxia-module-markdown 1.5 mixing html and markdown in one file

2014-02-27 Thread Stephen Connolly
File a bug in JIRA. It looks like doxia core's Xhtml parser is eating the tags that are being generated by the markdown parser. Let me know the JIRA and I may be able to fix it... but my initial attempt caused a lot of test regressions On 27 February 2014 09:10, Raphael André Bauer < raphael.an

Re: doxia-module-markdown 1.5 mixing html and markdown in one file

2014-02-27 Thread Stephen Connolly
On 27 February 2014 09:10, Raphael André Bauer < raphael.andre.ba...@gmail.com> wrote: > Hi, > > > for a project we are using mvn site and the > > > net.ju-n.maven.doxia > doxia-module-markdown > 1.0.0 > > > markdown plugin. > > The problem is that it does not properly generate the titles for th

Re: How to separately configure each Mojo of a plugin executed from command line?

2014-02-26 Thread Stephen Connolly
Ahh yes. It won't work because you can only have one default-cli. There are ways around but they get tricky and are rather hacky. Any reason why you can't just type mvn release:clean -DsomeProperty=... && mvn release:prepare -DsomeProperty=... && mvn release:perform -DsomeProperty=... On 26 F

[ANN] Apache Maven GPG Plugin 1.5 Released

2014-02-25 Thread Stephen Connolly
The Apache Maven team is pleased to announce the release of the Apache Maven GPG Plugin, version 1.5 This plugin signs all of the project's attached artifacts with GnuPG. http://maven.apache.org/plugins/maven-gpg-plugin/ You should specify the version in your project's plugin configuration:

Re: Why does Maven fail to compile my project occasionally?

2014-02-20 Thread Stephen Connolly
On 20 February 2014 01:58, LevskiWeng wrote: > Wayne Fay wrote > > Maven calls out to your system JDK to do the compilation step. With > > the [ERROR] lines you provided previously, Maven is simply passing > > along the error that was reported by javac. I bet, if you constructed > > the proper ja

Re: Looking for org.apache.poi 3.10-FINAL

2014-02-16 Thread Stephen Connolly
On Sunday, 16 February 2014, David Law wrote: > Hi Stuart, > > thanks once again! The only person to supply useful information. > > I checked the Nexus Index Timestamp from the repo this morning 05:39 CET > and: > nexus.index.timestamp=20140209134945.568 + > Over 6 days old!! > > Just checke

Re: Why does Maven fail to compile my project occasionally?

2014-02-15 Thread Stephen Connolly
On Saturday, 15 February 2014, LevskiWeng wrote: > Parsing POMs > Downloaded artifact > > http://192.168.4.172:8081/nexus/content/groups/public/com/xxx/system/systempom/1.0.0-SNAPSHOT/maven-metadata.xml > Downloaded artifact > > http://192.168.4.172:8081/nexus/content/groups/public/com/xxx/pom/1.

Re: Possible build collision between CI snapshot build and Release build

2014-02-15 Thread Stephen Connolly
Or filter commits where the log message starts with m-r-p's prefix On Saturday, 15 February 2014, Stuart McCulloch wrote: > On 15 February 2014 15:51, Thomas Broyer > > wrote: > > > On Sat, Feb 15, 2014 at 4:18 PM, Baptiste Mathus > > > > > > wrote: > > > > > Hi Dan, > > > Not sure what you me

Re: Code coverage with debug logs: 100% branch coverage not possible?...

2014-02-13 Thread Stephen Connolly
On 13 February 2014 09:23, Stephen Connolly wrote: > because if you enable ALL then the other side of the if will not be > followed... you need to combine runs with ALL and NONE to get both sides of > the logging branches. > > Another point that the "slf4j is the solu

Re: Code coverage with debug logs: 100% branch coverage not possible?...

2014-02-13 Thread Stephen Connolly
because if you enable ALL then the other side of the if will not be followed... you need to combine runs with ALL and NONE to get both sides of the logging branches. Another point that the "slf4j is the solution" camp misses is sometimes the log message needs evaluation in order to generate the me

Re: Activating a profile (add its build.plugins) from a plugin during validate phase

2014-02-07 Thread Stephen Connolly
Please read my answer to a slightly different question: http://stackoverflow.com/questions/14725197/reading-properties-file-from-pom-file-in-maven/14727072#14727072 The question is different, but if you understand the answer I wrote, you will have the answer to your question. On 7 February 2014

Re: maven-release-plugin updates modules with wrong versioning

2014-02-03 Thread Stephen Connolly
nevermind... wrong question that this is the answer for On 3 February 2014 15:57, Stephen Connolly wrote: > are you using git 1.8.5.x? > > > On 3 February 2014 15:56, Simone Tripodi wrote: > >> Hi all mates, >> >> in Apache Oltu we have a commons modules

Re: maven-release-plugin updates modules with wrong versioning

2014-02-03 Thread Stephen Connolly
are you using git 1.8.5.x? On 3 February 2014 15:56, Simone Tripodi wrote: > Hi all mates, > > in Apache Oltu we have a commons modules set[1] which I am trying to cut a > release, but I am experiencing for the first time a strange issue: when > installing all modules from /trunk, versions resp

Re: dependency plugin strangeness

2014-01-29 Thread Stephen Connolly
The crucial detail was omitted... what version of Maven? I suspect it could be a transitive dependency with system scope causing a bug of some sort. Most likely if you switch to a different version of Maven the command will work... in which case you might be able to construct a test case to prove

Re: surefire plugin output changes

2014-01-28 Thread Stephen Connolly
3.0.3 defaulted to surefire 2.7.2 if you did not specify a version 3.0.4 and 3.0.5 default to surefire 2.10 3.1.1 defaults surefire to 2.12.4 HTH On 28 January 2014 00:52, John Dix wrote: > I should point out that I have run 3.0.3 against the build in question and > I still received the same

Re: Renaming site.xml or using different top-level site.xml for site plugin

2014-01-26 Thread Stephen Connolly
In a multimodule project you need to attach the site descriptor of parent poms to the reactor. Thus the site descriptor you attach will depend on your profile... Thus you are in a maven anti-pattern (ie artifacts attached to the reactor should not depend on the profiles active at the time) You w

Re: versions maven plugin

2014-01-21 Thread Stephen Connolly
It sounded like a single reactor release of everything to me... in which case staging is fine On 21 January 2014 11:07, James Nord (jnord) wrote: > > > > Or to put a contrived (yet realistic) example on this - Consider a > > > shared library Y. You have no auto testing of it so its only tested

Re: versions maven plugin

2014-01-21 Thread Stephen Connolly
n your side - and > then you will have to intimately have full knowledge of the inside of the > build that produced this artifact - what groups on your MRM use, what > version of maven.. You can't just unpack and look at the use the > dependencies - what about shaded deps. To do

Re: versions maven plugin

2014-01-20 Thread Stephen Connolly
t; Alejandro Endo | Software Designer/Concepteur de logiciels > > > > > From: Stephen Connolly > > To: Maven Users List >, > Date: 2014-01-20 13:50 > Subject:Re: versions maven plugin > > > > How did you turn your RC into a released version? (I w

Re: versions maven plugin

2014-01-20 Thread Stephen Connolly
APSHOT of an RC-2 that will never be made so you have to > "downgrade" your dependency versions > > Am I doing something out of the ordinary here? > > > > > Alejandro Endo | Software Designer/Concepteur de logiciels > > > > From: Stephen Connolly > &

Re: versions maven plugin

2014-01-20 Thread Stephen Connolly
v-m-p does not roll back version numbers On 20 January 2014 16:59, wrote: > Not sure if this is the right list for codehaus plugins. If not I > apologize > > I have a pom with this > > > > foo.blah > bar >

How to bake secrets into your release artifacts without checking them into source control

2014-01-16 Thread Stephen Connolly
For when I cannot do things the “right way™” I created the Release From My Machine maven plugin... http://developer-blog.cloudbees.com/2014/01/maven-keeping-secrets-out-of-source.html Perhaps some people will find it useful... P.S. the integration tests for this plugin are quite fun if you want

Re: Reworking the main project site...

2014-01-15 Thread Stephen Connolly
should work now On 10 January 2014 21:31, Anders Hammar wrote: > Still can't get it to work in firefox (on mac). But it does work on my > phone. Looks way cool! But we should probably support firefox as well...:-) > > /Anders > > > On Fri, Jan 10, 2014 at

Re: Is it possible to deliberately have two dependencies with the same groupid, artifactid, and packaging, but different version?

2014-01-14 Thread Stephen Connolly
On 14 January 2014 22:49, KARR, DAVID wrote: > > -Original Message- > > From: Barrie Treloar [mailto:baerr...@gmail.com] > > Sent: Tuesday, January 14, 2014 2:23 PM > > To: Maven Users List > > Subject: Re: Is it possible to deliberately have two dependencies with > the > > same groupid,

Re: New logo?

2014-01-14 Thread Stephen Connolly
"good thing™" On 14 January 2014 16:30, Stephen Connolly wrote: > Maven is like a village made from tents... you can move from location to > location (project to project) and you bring all the same tents (phases / > conventions as to how to build a project) with you. Because

Re: New logo?

2014-01-14 Thread Stephen Connolly
feather logo There's a post-hoc justification for you ;-) On 14 January 2014 15:51, Mark H. Wood wrote: > On Tue, Jan 14, 2014 at 12:08:09PM +, Stephen Connolly wrote: > > Putting maven-20 in context, you get: > > > > > http://people.apache.org/~stephenc/m

Re: New logo?

2014-01-14 Thread Stephen Connolly
maven-22: uses some of the imagery from the 60-seconds tutorial to form the logo https://cwiki.apache.org/confluence/download/attachments/38569278/maven-22.png?version=1&modificationDate=1389716094692&api=v2 On 14 January 2014 15:55, Stephen Connolly wrote: > > > > On 1

Re: New logo?

2014-01-14 Thread Stephen Connolly
On 14 January 2014 15:51, Mark H. Wood wrote: > On Tue, Jan 14, 2014 at 12:08:09PM +0000, Stephen Connolly wrote: > > Putting maven-20 in context, you get: > > > > > http://people.apache.org/~stephenc/maven-logo-contest/maven-20-in-context.png > > *Very* nice wor

Re: New logo?

2014-01-14 Thread Stephen Connolly
maven-21 in context: http://people.apache.org/~stephenc/maven-logo-contest/maven-21-in-context.png On 14 January 2014 12:18, Stephen Connolly wrote: > I thought a hand-drawn font using straight lines only might look good with > the teepee > > maven-21: > https://cwiki.apache

Re: New logo?

2014-01-14 Thread Stephen Connolly
clearly we are not professional artists > ;-) > > On 14 January 2014 12:40, Stephen Connolly > wrote: > > We are "Apache Maven" so there is always going to be that temptation to > > abuse the "Apache" link... > > > > I would like to hear more about yo

Re: New logo?

2014-01-14 Thread Stephen Connolly
und of voting... On 14 January 2014 12:19, Tim Pizey wrote: > That looks really nice (though I do have problems with any North > American Indian references). > > cheers > TimP > > On 14 January 2014 12:08, Stephen Connolly > wrote: > > Putting maven-20 in context, you

Re: New logo?

2014-01-14 Thread Stephen Connolly
I thought a hand-drawn font using straight lines only might look good with the teepee maven-21: https://cwiki.apache.org/confluence/download/attachments/38569278/maven-21.png?version=1&modificationDate=1389701827196&api=v2 On 14 January 2014 12:08, Stephen Connolly wrote: > Putting

Re: New logo?

2014-01-14 Thread Stephen Connolly
Putting maven-20 in context, you get: http://people.apache.org/~stephenc/maven-logo-contest/maven-20-in-context.png On 14 January 2014 10:37, Stephen Connolly wrote: > My wife had a suggestion... why not make the M in maven out of two tee > pees... linking in with the Apache theme... &g

Re: New logo?

2014-01-14 Thread Stephen Connolly
FYI: ndeloof points out http://raven.rubyforge.org/ So I think any logo with a raven in it is well and truly dead in the water On 14 January 2014 10:37, Stephen Connolly wrote: > My wife had a suggestion... why not make the M in maven out of two tee > pees... linking in with the Apache

Re: New logo?

2014-01-14 Thread Stephen Connolly
for the feather maven-20: https://cwiki.apache.org/confluence/download/attachments/38569278/maven-20.png?version=1&modificationDate=1389695654233&api=v2 On 14 January 2014 10:35, Stephen Connolly wrote: > As a homage to Roy's wife, may I present > > maven-18: > https://cwi

Re: New logo?

2014-01-14 Thread Stephen Connolly
As a homage to Roy's wife, may I present maven-18: https://cwiki.apache.org/confluence/download/attachments/38569278/maven-18.png?version=1&modificationDate=1389695623134&api=v2 On 13 January 2014 15:36, Lyons, Roy wrote: > I asked my wife on the drive to the train today what animal she thinks

Re: Is it possible to deliberately have two dependencies with the same groupid, artifactid, and packaging, but different version?

2014-01-14 Thread Stephen Connolly
I like to consider a G:A as being substitutable along the V access... if you change the artifact so that it is not substitutable, then you really need to change the G:A part. Now substitutable does not mean no breaking API changes... it does mean that the package name and at least some of the clas

Re: New logo?

2014-01-13 Thread Stephen Connolly
Are you working on something? or just leaving us in the dark! On 13 January 2014 19:22, John Miller wrote: > OK saw the images and thought a combination of two looked nice. > > > > -Original Message- > From: Lyons, Roy [mailto:roy.ly...@cmegroup.com] > Sent: Monday, January 13, 2014 8:3

Re: Reworking the main project site...

2014-01-10 Thread Stephen Connolly
t; On Fri, Jan 10, 2014 at 9:13 PM, Stephen Connolly < > stephen.alan.conno...@gmail.com > wrote: > > > an extra space in the xdoc... should be fixed now > > > > > > On 10 January 2014 19:46, Anders Hammar > > wrote: > > > > > <http://step

Re: New logo?

2014-01-10 Thread Stephen Connolly
Somebody with wiki access will add it for you If you have a wiki account, I *should* be able to give you access to add it yourself... I'm only the flipping PMC chair like... But for the life of me I cannot find out *how* to do so :-O On Friday, 10 January 2014, Will Hoover wrote: > Here's one

Re: Reworking the main project site...

2014-01-10 Thread Stephen Connolly
an extra space in the xdoc... should be fixed now On 10 January 2014 19:46, Anders Hammar wrote: > > > > I recommend clicking the Let's take a tour button. > > > > Does not work in my browser! (tm) > > https://www.dropbox.com/s/oezmyk4khsynl78/Screenshot%2020

Re: New logo?

2014-01-10 Thread Stephen Connolly
place some others activities while > maven is building :-) > http://blog.octo.com/wp-content/uploads/2009/09/maven-building.png > > > > On Fri, Jan 10, 2014 at 6:00 PM, Stephen Connolly < > stephen.alan.conno...@gmail.com> wrote: > > > Do you mean something

Re: New logo?

2014-01-10 Thread Stephen Connolly
Do you mean something like maven-16 that I just uploaded to the contest wiki page? https://cwiki.apache.org/confluence/download/attachments/38569278/maven-16.png?version=1&modificationDate=1389373170779&api=v2 On 10 January 2014 16:40, Kristian Rosenvold wrote: > Way cool; this toy is a nordic c

Re: Project Description Contest

2014-01-10 Thread Stephen Connolly
On 10 January 2014 15:50, Ron Wheeler wrote: > On 10/01/2014 10:05 AM, Stephen Connolly wrote: > >> On 10 January 2014 14:01, Ron Wheeler > >wrote: >> >> If we are going to compare it to Ant or Gradle, it should be done in a >>> way >>> that

Re: Value of a prodyct comparison

2014-01-10 Thread Stephen Connolly
On 10 January 2014 15:02, Ron Wheeler wrote: > I am not sure that I agree with this section of https://cwiki.apache.org/ > confluence/display/MAVEN/Project+Description+Contest* > "Note: *this does not preclude us from including a "feature comparison > matrix" page somewhere in our site... but we s

Re: Project Description Contest

2014-01-10 Thread Stephen Connolly
On 10 January 2014 14:01, Ron Wheeler wrote: > If we are going to compare it to Ant or Gradle, it should be done in a way > that explains what Maven does not what it does not do. > Did you even read the sentence I had in bold? > *It is *not* our job to educate the reader about other build tools.

<    1   2   3   4   5   6   7   8   9   10   >