Frage

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.

War es hilfreich?

Lösung

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.

Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top