Diagram

Compilation & Running

To compile this project, you will need sbt installed.

Executable

To create an executable package with all dependencies, run:

sbt stage

After successful run, the package will be created in target/universal/stage.

To run the application, execute bin/selectivesearch (or bin/selectivesearch.bat on Windows), e.g.:

./bin/selectivesearch bucketize [basename]

To see available commands, read documentation.

Dependency

You can use this project as dependency by publishing it to a local Ivy or Maven repository:

sbt publish-local # Ivy
sbt publishM2 # Maven

Then, you can import to your project using sbt:

libraryDependencies += "edu.nyu.tandon" %% "selectivesearch" % "1.0"

or Maven:

<dependency>
    <groupId>edu.nyu.tandon</groupId>
    <artifactId>selectivesearch</artifactId>
    <version>1.0</version>
</dependency>