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.

有帮助吗?

解决方案

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.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top