Re: Including a local jar in the build

2010-03-21 Thread Wayne Fay
> Is there a way to just load that file with no questions asked? Put those files in this directory structure as shown in the error message: > file:///home/a/src/client_pom/src/main/webapp/WEB-INF/lib/org/apache/commons/commons-logging-1.1.1/1.1.1/commons-logging-1.1.1-1.1.1.pom > file:///home/a/sr

Re: Including a local jar in the build

2010-03-21 Thread Eduardo M KALINOWSKI
Arrowx7 wrote: Hello, I migrated from ant to maven and just wanted to include the jars (for now before we set up a repo). project Project Maven Repository default file://${basedir}/src/main/webapp/WEB-INF/lib Then I write dependencies,

Re: Including a local jar in the build

2010-03-21 Thread Arrowx7
---- > To unsubscribe, e-mail: users-unsubscr...@maven.apache.org > For additional commands, e-mail: users-h...@maven.apache.org > > > -- View this message in context: http://old.nabble.com/Including-a-local-jar-in-the-build-tp27977332p27981665.html Sent from the Maven - Use

Re: Including a local jar in the build

2010-03-21 Thread Wendy Smoak
On Sun, Mar 21, 2010 at 6:51 PM, Arrowx7 wrote: > Then I write dependencies, such as for apache commons logging >     >        org.apache.commons >        commons-logging-1.1.1 >         >     > > It complains because it wants the version, if I give it the version it says > it can't find it.  How

Including a local jar in the build

2010-03-21 Thread Arrowx7
itory, generating version etc... I just want to simply linclude that file in there. I realize that it's bad format, but how do I tell it to just grab that file regardless of version. Thanks -- View this message in context: http://old.nabble.com/Including-a-local-jar-in-the-build-tp2797733

Re: Including a local jar

2009-09-10 Thread Sven Preßler
Hi, There is a difference between dependencies and dependencyManagement, see [1]. dependencyManagement manages versions of dependencies, it doesn't include them. In this case: just discard the -tag and it should work. -Sven [1] http://maven.apache.org/guides/introduction/introduction-to-depend

Including a local jar

2009-09-10 Thread Jeremy Jones
Hello, In my current build from maven, it acts like it does not have classes included for compilation. When I do a manual install, it doesn't make a difference. I have also tried adding a dependency tag like so(with specifics changed): ... etc.