>From: "Kailas Lovlekar" <[EMAIL PROTECTED]> > > Hi Wendy, > If you are looking for volunteers to fix these, I would like to nominate > myself. > I am a newbie to shale dev and was sitting on fence for sometime, trying > to get my head around :-) > > Have we got a coding standard to follow or any checkstyle config? > > Appreciate if someone can give me a pointer to - > Shale project requirements / Deliverables / Designs(:-( not sure if we > are on XP) / > Coding standards /env set up notes >
I'll give you some information to get you started. You can find general information about the apache way here: http://apache.org/dev/ Shale uses svn for source control. There is some info on the link above about SVN. I use a combo of tortoisesvn and cygwin. You can perform an anonymous checkout of the source. svn co https://svn.apache.org/repos/asf/shale/framework/trunk/ framework Shale uses maven2 for builds so you will need to setup maven (http://maven.apache.org/). You can build each project or all projects using "mvn install" command. Maven will also setup the configuration for popular IDE's. For example, mvn eclipse:eclipse If you have source code you would like to contribute, you will need to create a patch file. A patch file is a file diff created from svn. For example, svn diff > mypatch.patch. After creating a patch file, open a JIRA shale ticket and attach your patch (http://shale.apache.org/issue-tracking.html). As far as coding standards, I know that we had a reference under struts but I've lost track of where that's located. > Cheers > Kailas > Gary > > -----Original Message----- > From: Gary VanMatre [mailto:[EMAIL PROTECTED] > Sent: 25 September 2006 03:31 > To: [email protected] > Subject: Re: FindBugs reports (was: Re: svn commit: r449524) > > > >From: "Wendy Smoak" > > > > On 9/24/06, [EMAIL PROTECTED] wrote: > > > Author: wsmoak > > > Date: Sun Sep 24 16:43:11 2006 > > > New Revision: 449524 > > > > > > URL: http://svn.apache.org/viewvc?view=rev&rev=449524 > > > Log: > > > Add the FindBugs plugin for reporting. > > > See http://mojo.codehaus.org/findbugs-maven-plugin/howto.html for > > configuration. > > > > I added FindBugs to the reporting section of the framework pom. Here > > are some initial reports with the default configuration: > > > > http://shale.apache.org/shale-core/findbugs.html > > http://shale.apache.org/shale-clay/findbugs.html > > http://shale.apache.org/shale-tiger/findbugs.html > > > > You can find the link under Project Reports for each module. > > > > Thanks Wendy. > > > > -- > > Wendy > > -- > No virus found in this incoming message. > Checked by AVG Free Edition. > Version: 7.1.405 / Virus Database: 268.12.8/455 - Release Date: > 22/09/2006 > > > -- > No virus found in this outgoing message. > Checked by AVG Free Edition. > Version: 7.1.407 / Virus Database: 268.12.12/461 - Release Date: > 02/10/2006 > > > > > ___________________________________________________________ > Now you can scan emails quickly with a reading pane. Get the new Yahoo! Mail. > http://uk.docs.yahoo.com/nowyoucan.html >
