Created
April 28, 2012 17:46
-
-
Save jbn/2520762 to your computer and use it in GitHub Desktop.
setup GeoMASON in a MASON sbt project
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 <[email protected]> | |
# 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