Re: noob confusion about dependencies and repositories

2012-10-08 Thread Steinar Bang
Steinar Bang s...@dod.no: On the recommended book list mentioned earlier, I will in particular mention Maven by example http://www.sonatype.com/Support/Books/Maven-By-Example The download page lists PDF and HTML versions. I was able to build myself an ePub version for my Sony PRS-T1 ebook

Re: noob confusion about dependencies and repositories

2012-10-07 Thread Barrie Treloar
On Sun, Oct 7, 2012 at 9:34 AM, Rob Withers reefed...@gmail.com wrote: I am guilty for being lazy. I really hate all this build config stuff and with maven, git and Jenkins, plus FindBugs and PMD in all three environments, it gets to me. I am totally up and running, minus some issues as I

RE: noob confusion about dependencies and repositories

2012-10-07 Thread Rob Withers
-Original Message- From: Barrie Treloar [mailto:baerr...@gmail.com] On Sun, Oct 7, 2012 at 9:34 AM, Rob Withers reefed...@gmail.com wrote: I am guilty for being lazy. I really hate all this build config stuff and with maven, git and Jenkins, plus FindBugs and PMD in all three

Re: noob confusion about dependencies and repositories

2012-10-07 Thread Steinar Bang
Rob Withers reefed...@gmail.com: I am guilty for being lazy. I really hate all this build config stuff... [snip!] FWIW, in my experience embracing maven patterns allows you to reduce build config to a minimum. On the recommended book list mentioned earlier, I will in particular mention

Re: noob confusion about dependencies and repositories

2012-10-06 Thread Steinar Bang
Rob Withers reefed...@gmail.com: Here are my questions, I suppose: 1.. How can I install murmur-events, even though pmd/findbugs is issuing warnings? The mvn install is failing. What's the directory layout of your projects? Where do you issue the command? What are the error messages

Re: noob confusion about dependencies and repositories

2012-10-06 Thread Barrie Treloar
On Sat, Oct 6, 2012 at 11:04 AM, Rob Withers reefed...@gmail.com wrote: Hey y’all, I am trying to link one project’s jar to another project. I am totally confused and hope someone can take some time to explain. I have been reading the following pages on the site:

RE: noob confusion about dependencies and repositories

2012-10-06 Thread Rob Withers
Thanks for your response, Steinar... From: Steinar Bang [mailto:s...@dod.no] Rob Withers reefed...@gmail.com: Here are my questions, I suppose: 1.. How can I install murmur-events, even though pmd/findbugs is issuing warnings? The mvn install is failing. What's the directory

RE: noob confusion about dependencies and repositories

2012-10-06 Thread Rob Withers
Ok, great. Thanks for the link! -Original Message- From: Barrie Treloar [mailto:baerr...@gmail.com] Sent: Saturday, October 06, 2012 6:08 AM To: Maven Users List Subject: Re: noob confusion about dependencies and repositories On Sat, Oct 6, 2012 at 11:04 AM, Rob Withers reefed

RE: noob confusion about dependencies and repositories

2012-10-06 Thread Rob Withers
warnings failing the murmur-events install? Thanks, Rob -Original Message- From: Rob Withers [mailto:reefed...@gmail.com] Sent: Saturday, October 06, 2012 6:12 AM To: 'Maven Users List' Subject: RE: noob confusion about dependencies and repositories Thanks for your response, Steinar

Re: noob confusion about dependencies and repositories

2012-10-06 Thread Steinar Bang
Rob Withers reefed...@gmail.com: What's the directory layout of your projects? Where do you issue the command? What are the error messages you're getting. workspace/ murmur/ pom.xml murmur-events/ pom.xml I issue the command in the murmur-events dir and I

Re: noob confusion about dependencies and repositories

2012-10-06 Thread Steinar Bang
Rob Withers reefed...@gmail.com: Ok, I got around the issue with number 3 by removing the modules and building the top pom, then adding the modules. Ok. What you did with that, was to add the top POM to your local repository, and then the modules will find it there, rather than in their

RE: noob confusion about dependencies and repositories

2012-10-06 Thread Rob Withers
From: Steinar Bang [mailto:s...@dod.no] Rob Withers reefed...@gmail.com: What's the directory layout of your projects? Where do you issue the command? What are the error messages you're getting. workspace/ murmur/ pom.xml murmur-events/ pom.xml

Re: noob confusion about dependencies and repositories

2012-10-06 Thread Wayne Fay
Instead of a local repository, have a public repository at http://callistosheart.org/maven or something. If that is an option for you, then I'm sure it will be a good thing. I have only ever been allowed to set up an intranet repository...:-) You can add that repository in your top pom.

RE: noob confusion about dependencies and repositories

2012-10-06 Thread Rob Withers
Cool, I'll check it out after getting all my projects squared away... Rob -Original Message- From: Wayne Fay [mailto:wayne...@gmail.com] Sent: Saturday, October 06, 2012 5:27 PM To: Maven Users List Subject: Re: noob confusion about dependencies and repositories Instead

Re: noob confusion about dependencies and repositories

2012-10-06 Thread Barrie Treloar
On Sun, Oct 7, 2012 at 7:57 AM, Wayne Fay wayne...@gmail.com wrote: Instead of a local repository, have a public repository at http://callistosheart.org/maven or something. If that is an option for you, then I'm sure it will be a good thing. I have only ever been allowed to set up an

RE: noob confusion about dependencies and repositories

2012-10-06 Thread Rob Withers
] Sent: Saturday, October 06, 2012 7:00 PM To: Maven Users List Subject: Re: noob confusion about dependencies and repositories On Sun, Oct 7, 2012 at 7:57 AM, Wayne Fay wayne...@gmail.com wrote: Instead of a local repository, have a public repository at http://callistosheart.org/maven

noob confusion about dependencies and repositories

2012-10-05 Thread Rob Withers
Hey y’all, I am trying to link one project’s jar to another project. I am totally confused and hope someone can take some time to explain. I have been reading the following pages on the site: http://maven.apache.org/guides/introduction/introduction-to-dependency-mechanism.html