RE: Maven Plugin ITs with M2 disabled

2015-09-26 Thread Martin Gainty
> Date: Sat, 26 Sep 2015 10:53:44 +0200 > To: dev@maven.apache.org > Subject: Maven Plugin ITs with M2 disabled > From: rfscho...@apache.org > > Hi, > > FYI, I've disabled these jobs [1][2] on our buildserver. They gave some > odd M2-specific errors I don't want to spent time on. Time to

Maven Plugin ITs with M2 disabled

2015-09-26 Thread Robert Scholte
Hi, FYI, I've disabled these jobs [1][2] on our buildserver. They gave some odd M2-specific errors I don't want to spent time on. Time to move forward. thanks, Robert [1] https://builds.apache.org/view/M-R/view/Maven/job/maven-plugins-ITs-m2/ [2]

[GitHub] maven-archetype pull request: ARCHETYPE-487 Add input validation f...

2015-09-26 Thread michael-o
Github user michael-o commented on the pull request: https://github.com/apache/maven-archetype/pull/7#issuecomment-143424312 There hasn't much activity lately. Ping me again next week and I'll review and merge your PR. --- If your project is set up for it, you can reply to this

Re: Maven Plugin ITs with M2 disabled

2015-09-26 Thread Hervé BOUTEMY
+1 with parent upgrade, which should happen shortly, building with Maven 2 will simply not work any more: simply disabling these jobs is just because we hesitate to throw away anything :) Regards, Hervé Le samedi 26 septembre 2015 10:53:44 Robert Scholte a écrit : > Hi, > > FYI, I've

FOSDEM 2016

2015-09-26 Thread Karl Heinz Marbaise
Hi, are there any interest to meetup on FOSDEM 2016 in Brussels... I have read the pages where the deadlines for Developer rooms will due to 9. October 2015 ... Kind regards Karl Heinz Marbaise - To unsubscribe, e-mail:

[GitHub] maven-surefire pull request: [SUREFIRE-1179] integration test

2015-09-26 Thread Tibor17
Github user Tibor17 commented on the pull request: https://github.com/apache/maven-surefire/pull/106#issuecomment-143505456 @juherr This is the IT, but the problem is in TestNG because the concurrency remains 10 even if dataproviderthreadcount=30. Meanwhile I reported issue

[GitHub] maven-surefire pull request: [SUREFIRE-1179] integration test

2015-09-26 Thread Tibor17
GitHub user Tibor17 opened a pull request: https://github.com/apache/maven-surefire/pull/106 [SUREFIRE-1179] integration test for #105 You can merge this pull request into a Git repository by running: $ git pull https://github.com/Tibor17/maven-surefire s4 Alternatively you

Re: How to access $project.build.sourceEncoding?

2015-09-26 Thread Karl Heinz Marbaise
Hi Jochen, On 9/26/15 10:28 PM, Jochen Wiedmann wrote: Hi, I'd like to access $[project.build.sourceEncoding} in a Maven Plugin. How would I do that? Using what version of maven-model? Hm...you would like use that for a maven plugin ? Then it's used like this: @Parameter( property =

Re: Using ${revision} as a version

2015-09-26 Thread Karl Heinz Marbaise
Hi, so after diving into this problem... (https://issues.apache.org/jira/browse/MNG-5895)... I have found the culprit (in my opinion) at Maven-assembly-plugin located in this class DefaultDependencyResolver: at the following method: private Set resolveTransitively( final Set

How to access $project.build.sourceEncoding?

2015-09-26 Thread Jochen Wiedmann
Hi, I'd like to access $[project.build.sourceEncoding} in a Maven Plugin. How would I do that? Using what version of maven-model? Thanks, Jochen -- The next time you hear: "Don't reinvent the wheel!"

Re: FOSDEM 2016

2015-09-26 Thread Hervé BOUTEMY
Hi Karl Heinz, I'm interested: Brussels is near, it's a good opportunity to meet. Regards, Hervé Le samedi 26 septembre 2015 23:06:03 Karl Heinz Marbaise a écrit : > Hi, > > are there any interest to meetup on FOSDEM 2016 in Brussels... > > I have read the pages where the deadlines for

Re: Using ${revision} as a version

2015-09-26 Thread Lennart Jörelid
I have painfully noted that the currently only [properly] working way is to use profiles to switch between values given on the command line and some type of default value (given in another profile). Typically, it takes on the pattern/form as shown below - and it would be really nice not to have