Re: Help getting started contributing to maven

2015-10-01 Thread Anders Hammar
Joining this discussion... Based on my experience when I joined, Maven core and maven plugins are different beasts. Sure, if you understand the inner parts of Maven core it is easier to understand plugins, but core also depends on many different libraries which handle different aspects of the logi

Re: Help getting started contributing to maven

2015-10-01 Thread Karl Heinz Marbaise
Hi Larry, it would be nice if you start working (or trying to sometimes it's hard i know this) on a particular issue that you might give a note here on the dev list so we know where you are working on so this will prevent duplicate work...just to prevent an other one to work on the same issue

Re: Help getting started contributing to maven

2015-09-30 Thread ivange larry
Hi Micheal, Thanks a lot for the tips. I look forward to be an active contributor in the community. Will create PR or patches soon. I am still getting to know the project (i mean the code for maven) and how it works. To become familiar with the code base i have started by studying how to build mav

Re: Help getting started contributing to maven

2015-09-29 Thread Michael Osipov
Am 2015-09-28 um 22:40 schrieb ivange larry: Hi all My name is Ivange Larry, am from Cameroon and new to maven community. I have followed the instructions on getting started as a developer in the Apache maven community and below are a few of the things i have done so far. First of all greeting

Re: Help getting started contributing to maven

2015-09-28 Thread Bernd Eckenfels
Hello, Am Mon, 28 Sep 2015 21:40:54 +0100 schrieb ivange larry : > 1 - Is the code hosted here > https://git-wip-us.apache.org/repos/asf/maven.git, the same as the > code hosted on github with this url https://github.com/apache/maven. Yes, github receives a copy of the ASF repository. You can se

Help getting started contributing to maven

2015-09-28 Thread ivange larry
Hi all My name is Ivange Larry, am from Cameroon and new to maven community. I have followed the instructions on getting started as a developer in the Apache maven community and below are a few of the things i have done so far. I did a git clone on this url https://git-wip-us.apache.org/repos/asf

Re: Contributing to Maven

2014-12-24 Thread Karl Heinz Marbaise
Hi, best is to create a patch which is attached to the jira issue... And yes maven itself is in Git...and take a look if after you change all tests are correctly working... So somplest is to create a fork of the apache repository create a local branch according to the issue and create an app

Re: Contributing to Maven

2014-12-24 Thread Raghavendra Vaidya
I was looking at bug list and found this - MavenMNG-5721 Which is a possible null pointer exception in org.apache.maven.repository. MetadataResolutionResult It is a fairly easy fix where you have to assign the output of initList function to a private variable …. I want to fix it. Can some one

Re: Contributing to Maven

2014-12-23 Thread Karl Heinz Marbaise
Hi, On 12/23/14 2:45 AM, Raghavendra Vaidya wrote: I have downloaded, built and setup maven code on intellij I am able to debug the maven build on the IDE. I want to start contributing to the project by fixing bugs. http://maven.apache.org/guides/development/guide-helping.html Furthermo

Re: Contributing to Maven

2014-12-22 Thread Manfred Moser
http://javaadventure.blogspot.ca/2012/07/do-you-want-to-become-maven-committer.html Raghavendra Vaidya wrote on 22.12.2014 17:45: > I have downloaded, built and setup maven code on intellij I am able to > debug the maven build on the IDE. > > I want to start contributing to the project by f

Contributing to Maven

2014-12-22 Thread Raghavendra Vaidya
I have downloaded, built and setup maven code on intellij I am able to debug the maven build on the IDE. I want to start contributing to the project by fixing bugs. Could some one point me to resources / documentation on the Maven code design - how the java components are put together .

Contributing to Maven Core

2014-06-02 Thread Jason van Zyl
For those interested in contributing to Maven Core. http://takari.io/2014/06/02/contributing-to-maven-core.html I was also talking with Michael about hosting a hangout to demonstrate some of the pretty sophisticated tools we have for debugging Maven Core and the ITs in Eclipse. No one should

Re: Configuration guide for developping / contributing to maven 2.1

2008-07-01 Thread Henri Gomez
> It's recent - I reported it on this list yesterday. If you take trunk back > about a week, you should find that it works a bit better. I'll wait it to be fixed. > On the other hand, if you want a slightly easier way to get started - you > might like to help correct these / vs \ issues on Window

Re: Configuration guide for developping / contributing to maven 2.1

2008-06-30 Thread Brett Porter
On 01/07/2008, at 2:25 AM, Henri Gomez wrote: I'm using windows and got this error with both windows and cygwin shells ... BTW, did this problem is recent or has still been here ? It's recent - I reported it on this list yesterday. If you take trunk back about a week, you should fin

Re: Configuration guide for developping / contributing to maven 2.1

2008-06-30 Thread Henri Gomez
>>Tests run: 190, Failures: 4, Errors: 0, Skipped: 0 > > what are the failures you are getting in the target/surefire-reports > directory? in maven-project/target/surefire-reports : org.apache.maven.project.MavenProjectDynamismTest.txt : -

Re: Configuration guide for developping / contributing to maven 2.1

2008-06-30 Thread blporter
>-- Original Message -- >Reply-To: "Maven Developers List" >Date: Mon, 30 Jun 2008 17:11:09 +0200 >From: "Henri Gomez" <[EMAIL PROTECTED]> >To: "Maven Developers List" >Subject: Re: Configuration guide for developping / contri

Re: Configuration guide for developping / contributing to maven 2.1

2008-06-30 Thread Henri Gomez
Just grab maven 2.1 trunk to a new location (At revision: 672783) mvn clean => works mvn compile => works but I see this message : [INFO] [aspectj:compile {execution: compile-aspects}] [WARNING] bad version number found in C:\maven-repository\aspectj\aspectjrt\1.5.3\aspectjrt-1.5.3.jar expected

Re: Configuration guide for developping / contributing to maven 2.1

2008-06-30 Thread Brett Porter
On 30/06/2008, at 11:55 PM, Henri Gomez wrote: It's the same problem I was working on recently, the embedder tests don't honour your settings, so they don't work with a clean local repository. I added some plugin definitions to the build itself to try and trigger it to download the right a

Re: Configuration guide for developping / contributing to maven 2.1

2008-06-30 Thread Henri Gomez
> It's the same problem I was working on recently, the embedder tests don't > honour your settings, so they don't work with a clean local repository. I > added some plugin definitions to the build itself to try and trigger it to > download the right artifacts (eg, resources plugin 2.2) - do you hav

Re: Configuration guide for developping / contributing to maven 2.1

2008-06-30 Thread Brett Porter
On 30/06/2008, at 11:23 PM, Henri Gomez wrote: I do a mvn clean and then mvn package and attached the log (pretty long sorry). It's strange but it seems that build couldn't find may It's the same problem I was working on recently, the embedder tests don't honour your settings, so they don

Re: Configuration guide for developping / contributing to maven 2.1

2008-06-30 Thread Brett Porter
On 30/06/2008, at 8:47 PM, Henri Gomez wrote: Hi to all, I'd like to works on maven 2.1 to locate and fix a problem with jaxws-mojo (http://jira.codehaus.org/browse/MNG-3586) (Eugene suggestion :) Cool, would be good to get another one off the list :) Doing a Run Maven clean works (of cou

Configuration guide for developping / contributing to maven 2.1

2008-06-30 Thread Henri Gomez
Hi to all, I'd like to works on maven 2.1 to locate and fix a problem with jaxws-mojo (http://jira.codehaus.org/browse/MNG-3586) (Eugene suggestion :) I grabbed the trunk from maven 2.1 into my Eclipse 3.4 workspace. I use m2eclipse 0.9.4 so I enabled Maven Dependencies Management and Enabled Ne