Skip to content

Instantly share code, notes, and snippets.

@jbn
Created April 28, 2012 17:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jbn/2520762 to your computer and use it in GitHub Desktop.
Save jbn/2520762 to your computer and use it in GitHub Desktop.
setup GeoMASON in a MASON sbt project
#!/bin/bash -v
# A script to make using GeoMASON easier in SBT projects, given lack of a
# MAVEN repository.
#
# See: http://cs.gmu.edu/~eclab/projects/mason/extensions/geomason/
#
# The most convienent way to run is to CD into your scripts base directory and
# issue the command:
#
# > bash -v < <(curl -s https://raw.github.com/gist/2520762/b0d45397ee2d9c04e996a16810e20ae1179c5774/setup_geomason.sh)
#
# -- John B Nelson <jbn@pathdependent.com>
# Make and move into the lib directory.
mkdir lib; cd $_
# Get GeoMASON jar file.
wget http://cs.gmu.edu/~eclab/projects/mason/extensions/geomason/geomason.1.1.jar
# Get JTS
wget http://cs.gmu.edu/~eclab/projects/mason/extensions/geomason/jts-1.11.jar
cd ..
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment