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.

Était-ce utile?

La 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.

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top