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

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 jamesbto...@gmail.com 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

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 relativePath * etc Many reasons On 7 August 2014 12:29, Behrang Saeedzadeh behran...@gmail.com wrote: I was just reading the source code for the [Versions Maven

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

2014-07-28 Thread Stephen Connolly
scopesystem/scope is for JAR files that are supposed to be put in the JVM's ext directory or equivalent. You do not want to use scopesystem/scope On 28 July 2014 15:43, Steve Cohen sco...@javactivity.org wrote: Sadly, my hopes were not completely fulfilled. In spite of specifying the MQ

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

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 sco...@javactivity.org 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

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 stephen.alan.conno...@gmail.com wrote: http://developer-blog.cloudbees.com/2013

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 northrup.ja...@gmail.com wrote:

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

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

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 stephen.alan.conno...@gmail.com wrote: Classifiers are not for what you think they are for... they are for flagging side artifacts... and in general

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

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 ericcorn...@gmail.com wrote: Hello, I have a few questions about maven lifecycles that you can probably answer. I see many

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

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

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

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 g.h...@aurenz.de wrote: Hello Curtis, thanks for your reply. The Jenkins configuration says that C:\.jenkins is the home directory. So I created

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

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 jim.garri...@nwea.org wrote: Paul Benedict wrote I agree with Dan. Last I check, IIRC, the order of operations

Re: Controlling order of plugin execution

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

Re: Controlling order of plugin execution

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

Re: Controlling order of plugin execution

2014-06-04 Thread Stephen Connolly
Wheeler rwhee...@artifact-software.com javascript:; wrote: We are not a cult. If we already have a we, we are half way there! Just short a charismatic leader and a Book of the Way. Ron On 04/06/2014 3:22 PM, Jason van Zyl wrote: On Jun 4, 2014, at 12:07 PM, Stephen Connolly

Re: Controlling order of plugin execution

2014-06-04 Thread Stephen Connolly
, Stephen Connolly stephen.alan.conno...@gmail.com javascript:; wrote: On Wednesday, 4 June 2014, Paul Benedict pbened...@apache.org javascript:; wrote: I, myself, have also found the lack of ordered plugin execution to be wanting. Stephen does have a point: complex behavior is likely

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

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 bmat...@batmat.net wrote: Yup, I know this work

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 alexander.g.kai...@gmail.com wrote: Hi, I am trying to understand mavens downloading of snapshots (maven

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

Re: Generating war and Jar from same codebase

2014-04-23 Thread Stephen Connolly
. 2. The child poms will have relativePath in parent tag as ./pom.xml. Please correct me if this is wrong. Thanks Narayanan Narayanan On Tue, Apr 22, 2014 at 12:38 AM, Stephen Connolly stephen.alan.conno...@gmail.com wrote: On 22 April 2014 01:18, Narayanan K knarayana

Re: Generating war and Jar from same codebase

2014-04-22 Thread Stephen Connolly
On 22 April 2014 01:18, Narayanan K knarayana...@gmail.com 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

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

2014-04-18 Thread Stephen Connolly
server id.../id username.../username password.../password privateKey/home/.../.ssh/id_rsa/privateKey /server On 18 April 2014 16:27, Thomas Broyer t.bro...@gmail.com wrote: I think by default Maven calls the command-line Git, so it uses the ~/.ssh/id_rsa,

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

2014-04-18 Thread Stephen Connolly
/jenkins/.ssh/id_dsa debug1: Trying private key: /srv/jenkins/.ssh/id_ecdsa debug1: No more authentication methods to try. Permission denied (publickey). Any more suggestions? On Fri, Apr 18, 2014 at 11:31 AM, Stephen Connolly stephen.alan.conno...@gmail.com wrote: server

Re: Generated content in generated sites (!)

2014-04-16 Thread Stephen Connolly
On Wednesday, 16 April 2014, org.apache.maven.u...@io7m.com 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

Re: Generated content in generated sites (!)

2014-04-16 Thread Stephen Connolly
On Wednesday, 16 April 2014, org.apache.maven.u...@io7m.com wrote: On Wed, 16 Apr 2014 20:39:40 +0100 Stephen Connolly stephen.alan.conno...@gmail.com javascript:; wrote: On Wednesday, 16 April 2014, org.apache.maven.u...@io7m.comjavascript:; wrote: I'm not averse to writing a custom

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

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 bimargul...@gmail.com wrote: If a markdown file in my site contains lib 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

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

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

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
On 28 March 2014 11:12, ghostwolf59 martin.cederv...@commerce.wa.gov.auwrote: version2.2.2/version Then you are not using version 2.5

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 martin.cederv...@commerce.wa.gov.auwrote: 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

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

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

2014-03-28 Thread Stephen Connolly
(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 Subject: Re: maven release-plugin 2.5 bug - releasing snapshots

Re: properties that are not being resolved

2014-03-25 Thread Stephen Connolly
an extra substitution 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/questions/14725197/reading-properties-file-from-pom-file

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 henrik.g...@gmail.com wrote: I stumbled over some rather strange behaviour

Re: Configuring SCM for github

2014-03-19 Thread Stephen Connolly
On Wednesday, 19 March 2014, Eric Kolotyluk eric.koloty...@gmail.com wrote: Now I have scm urlhttps://github.com/kolotyluk/java-file-utilities.git/url connectionscm:git:https://github.com/kolotyluk/java-file-utilities.git/ connection

Re: Configuring SCM for github

2014-03-19 Thread Stephen Connolly
Why is ssh better than https? Cheers, Eric On 3/19/2014 12:30 PM, Stephen Connolly wrote: On Wednesday, 19 March 2014, Eric Kolotyluk eric.koloty...@gmail.com wrote: Now I have scm urlhttps://github.com/kolotyluk/java-file-utilities.git/url connectionscm:git:https://github.com

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 akaras...@apache.org wrote: Hello, I've got a module that builds an executable jar file using the Maven

Re: Re: Status of MRELEASE-835?

2014-03-05 Thread Stephen Connolly
On 5 March 2014 15:27, Thorsten Heit thorsten.h...@vkb.de 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/...?

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

Re: Using github as a maven repo

2014-03-05 Thread Stephen Connolly
On Wednesday, 5 March 2014, Olivier Lamy ol...@apache.org 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.

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 dependency groupIdnet.ju-n.maven.doxia/groupId artifactIddoxia-module-markdown/artifactId version1.0.0/version /dependency markdown plugin. The

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 div 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

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 div it should go through unmolested. On 27 February 2014 11:22, Stephen Connolly stephen.alan.conno...@gmail.com wrote: File a bug in JIRA. It looks like doxia core's Xhtml parser is eating the div tags that are being generated by the markdown parser

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

2014-02-27 Thread Stephen Connolly
, Stephen Connolly stephen.alan.conno...@gmail.com wrote: if you can use a HTML5 tag that isn't div it should go through unmolested. On 27 February 2014 11:22, Stephen Connolly stephen.alan.conno...@gmail.com wrote: File a bug in JIRA. It looks like doxia core's Xhtml parser is eating

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

[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 levskiw...@gmail.com 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

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

2014-02-16 Thread Stephen Connolly
On Sunday, 16 February 2014, David Law m2ecli...@apconsult.de 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!!

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 mccu...@gmail.com wrote: On 15 February 2014 15:51, Thomas Broyer t.bro...@gmail.comjavascript:; wrote: On Sat, Feb 15, 2014 at 4:18 PM, Baptiste Mathus

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

2014-02-15 Thread Stephen Connolly
On Saturday, 15 February 2014, LevskiWeng levskiw...@gmail.com 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

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

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 stephen.alan.conno...@gmail.com 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

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
are you using git 1.8.5.x? On 3 February 2014 15:56, Simone Tripodi simonetrip...@apache.org 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

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 stephen.alan.conno...@gmail.comwrote: are you using git 1.8.5.x? On 3 February 2014 15:56, Simone Tripodi simonetrip...@apache.org wrote: Hi all mates, in Apache Oltu we have a commons

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

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 john@amdocs.com wrote: I should point out that I have run 3.0.3 against the build in question and I still

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

Re: versions maven plugin

2014-01-21 Thread Stephen Connolly
can't just unpack and look at the use the dependencies - what about shaded deps. To do all this work post build is IMHO nigh on impossible. /James -Original Message- From: Stephen Connolly [mailto:stephen.alan.conno...@gmail.com] Sent: 20 January 2014 19:40 To: Maven Users List

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) jn...@cisco.com 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

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, alejandro.e...@miranda.com wrote: Not sure if this is the right list for codehaus plugins. If not I apologize I have a pom with this dependencies dependency

Re: versions maven plugin

2014-01-20 Thread Stephen Connolly
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 stephen.alan.conno...@gmail.com javascript:; To: Maven Users List users

Re: versions maven plugin

2014-01-20 Thread Stephen Connolly
Endo | Software Designer/Concepteur de logiciels From: Stephen Connolly stephen.alan.conno...@gmail.com javascript:; To: Maven Users List users@maven.apache.org javascript:;, Date: 2014-01-20 13:50 Subject:Re: versions maven plugin How did you turn your RC

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 and...@hammar.net 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 9:13 PM, Stephen Connolly

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

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=1modificationDate=1389695623134api=v2 On 13 January 2014 15:36, Lyons, Roy roy.ly...@cmegroup.com wrote: I asked my wife on the drive to the train today

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=1modificationDate=1389695654233api=v2 On 14 January 2014 10:35, Stephen Connolly stephen.alan.conno...@gmail.comwrote: As a homage to Roy's wife, may I present maven-18: https

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 stephen.alan.conno...@gmail.comwrote: My wife had a suggestion... why not make the M in maven out of two tee pees

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 stephen.alan.conno...@gmail.comwrote: My wife had a suggestion... why not make the M in maven out of two tee pees... linking

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=1modificationDate=1389701827196api=v2 On 14 January 2014 12:08, Stephen Connolly stephen.alan.conno

Re: New logo?

2014-01-14 Thread Stephen Connolly
2014 12:19, Tim Pizey t...@paneris.org 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 stephen.alan.conno...@gmail.com wrote: Putting maven-20 in context, you get: http

Re: New logo?

2014-01-14 Thread Stephen Connolly
we are not professional artists ;-) On 14 January 2014 12:40, Stephen Connolly stephen.alan.conno...@gmail.com 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 your objections. Keep in mind

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 stephen.alan.conno...@gmail.comwrote: I thought a hand-drawn font using straight lines only might look good with the teepee maven-21: https

Re: New logo?

2014-01-14 Thread Stephen Connolly
On 14 January 2014 15:51, Mark H. Wood mw...@iupui.edu 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/maven-logo-contest/maven-20-in-context.png *Very* nice work, but...what does

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=1modificationDate=1389716094692api=v2 On 14 January 2014 15:55, Stephen Connolly stephen.alan.conno...@gmail.comwrote

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 mw...@iupui.edu 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/maven-logo-contest/maven-20

Re: New logo?

2014-01-14 Thread Stephen Connolly
is a good thing™ On 14 January 2014 16:30, Stephen Connolly stephen.alan.conno...@gmail.comwrote: 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

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 dk0...@att.com 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

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 john.w.mil...@oracle.com 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,

Reworking the main project site...

2014-01-10 Thread Stephen Connolly
For anyone who is interested in some of the kinds of reworking that I would like to see on our main site, here is the work in progress I have been doing on the JUnit site... http://stephenc.github.io/junit/ I recommend clicking the Let's take a tour button. -Stephen

Re: Project Description Contest

2014-01-10 Thread Stephen Connolly
On 10 January 2014 14:01, Ron Wheeler rwhee...@artifact-software.comwrote: 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

Re: Value of a prodyct comparison

2014-01-10 Thread Stephen Connolly
On 10 January 2014 15:02, Ron Wheeler rwhee...@artifact-software.comwrote: 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

Re: Project Description Contest

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

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=1modificationDate=1389373170779api=v2 On 10 January 2014 16:40, Kristian Rosenvold kristian.rosenv...@gmail.comwrote: Way

Re: New logo?

2014-01-10 Thread Stephen Connolly
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 like maven-16 that I just uploaded to the contest wiki page? https

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 and...@hammar.net wrote: http://stephenc.github.io/junit/ I recommend clicking the Let's take a tour button. Does not work in my browser! (tm)

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
PM, Stephen Connolly stephen.alan.conno...@gmail.com javascript:; wrote: an extra space in the xdoc... should be fixed now On 10 January 2014 19:46, Anders Hammar and...@hammar.netjavascript:; wrote: http://stephenc.github.io/junit/ I recommend clicking the Let's take a tour

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