[Lift] Re: Including jars into a liftweb project

2009-06-27 Thread fbettag
I am trying to build a eBay-API-Application which uses eBay's Java SDK. It's in no maven repository, that's why i wanted to know how to include it manually :) But i've gone your way and created my own maven repository for this. Thanks for the great idea! I always thought creating my own maven

[Lift] Re: Including jars into a liftweb project

2009-06-26 Thread Jeppe Nejsum Madsen
On 26 Jun 2009, fbettag wrote: Hey guys, i was wondering how (and where) i have to put jars in my liftweb project to get them included. i know it's a beginners question, but i've been playing around all night and i couldn't get it to work. Normally, you would put jars in the WEB-INF/lib

[Lift] Re: Including jars into a liftweb project

2009-06-26 Thread Caoyuan
On Fri, Jun 26, 2009 at 3:51 PM, Jeppe Nejsum Madsenje...@ingolfs.dk wrote: On 26 Jun 2009, fbettag wrote: Hey guys, i was wondering how (and where) i have to put jars in my liftweb project to get them included. i know it's a beginners question, but i've been playing around all night and

[Lift] Re: Including jars into a liftweb project

2009-06-26 Thread Timothy Perrett
To clarify - you only need that system path if its a JAR not in a maven repository anywhere. What JAR are you trying to add? Cheers, Tim On Jun 26, 9:01 am, Caoyuan dcaoy...@gmail.com wrote: On Fri, Jun 26, 2009 at 3:51 PM, Jeppe Nejsum Madsenje...@ingolfs.dk wrote: On 26 Jun 2009, fbettag

[Lift] Re: Including jars into a liftweb project

2009-06-26 Thread Oliver Lambert
If I have an application thats not in a Maven repository, I usually put it in my local (or company) repository - for instance adding functionaljava.jar mvn install:install-file -DgroupId=org.other -DartifactId=functionaljava -Dversion=2.17 -Dpackaging=jar -Dfile=functionaljava.jar

[Lift] Re: Including jars into a liftweb project

2009-06-26 Thread Timothy Perrett
Just further to this, as was discussed ages and ages ago, be carful when using system scope - a more portable alternative is an embedded repository: http://is.gd/1erQT Cheers, Tim On Jun 26, 3:07 pm, Oliver Lambert olambo...@gmail.com wrote: If I have an application thats not in a Maven