Question

I've done this before but can't seem to remember what folder to create or where to put jar files.

I'm attempting to include an independently developed JAR file into my Lift project, so I can do:

import org.imgscalr._

And use it etc.

Any help much appreciated, thanks in advance.

Was it helpful?

Solution

Quick bad way:

Add the .jar file to your nameofproject/lib/ folder, it should automatically be added to your classpath.

Proper way: Use SBT

libraryDependencies ++= Seq(
   "org.imgscalr"   %  "imgscalr-lib"      % "4.2"
)

This library is published to Maven Central, right HERE.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top