Skip to content

Instantly share code, notes, and snippets.

@vogon101
Created April 13, 2018 16:52
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 vogon101/b1a566b65e3c3b18f91d2f19cb0c2737 to your computer and use it in GitHub Desktop.
Save vogon101/b1a566b65e3c3b18f91d2f19cb0c2737 to your computer and use it in GitHub Desktop.
name := "TheWeather"
version := "0.1"
scalaVersion := "2.12.4"
resolvers += "Boundless" at "http://repo.boundlessgeo.com/main"
resolvers += "OSGEO" at "http://download.osgeo.org/webdav/geotools/"
// https://mvnrepository.com/artifact/org.apache.commons/commons-compress
libraryDependencies += "org.apache.commons" % "commons-compress" % "1.16.1"
// https://mvnrepository.com/artifact/commons-io/commons-io
libraryDependencies += "commons-io" % "commons-io" % "2.6"
// https://mvnrepository.com/artifact/org.geotools/gt-main
//libraryDependencies += "org.geotools" % "gt-main" % "19.0"
// https://mvnrepository.com/artifact/org.geotools/gt-shapefile
libraryDependencies += "org.geotools" % "gt-shapefile" % "20-SNAPSHOT"
unmanagedBase := baseDirectory.value / "lib-jars"
mainClass in (Compile, run) := Some("com.vogonjeltz.weather.Plotting")
[info] Updating ...
[warn] Choosing Boundless for org.geotools#gt-shapefile;20-SNAPSHOT
[warn] Choosing Boundless for org.geotools#gt-data;20-SNAPSHOT
[warn] Choosing Boundless for org.geotools#gt-main;20-SNAPSHOT
[warn] Choosing Boundless for org.geotools#gt-api;20-SNAPSHOT
[warn] Choosing Boundless for org.geotools#gt-referencing;20-SNAPSHOT
[warn] Choosing Boundless for org.geotools#gt-metadata;20-SNAPSHOT
[warn] Choosing Boundless for org.geotools#gt-opengis;20-SNAPSHOT
[warn] ::::::::::::::::::::::::::::::::::::::::::::::
[warn] :: UNRESOLVED DEPENDENCIES ::
[warn] ::::::::::::::::::::::::::::::::::::::::::::::
[warn] :: jgridshift#jgridshift;1.0: java.lang.NullPointerException at sbt.internal.librarymanagement.ivyint.GigahorseUrlHandler.getURLInfo(GigahorseUrlHandler.scala:54)
[warn] ::::::::::::::::::::::::::::::::::::::::::::::
[warn]
[warn] Note: Unresolved dependencies path:
[warn] jgridshift:jgridshift:1.0
[warn] +- org.geotools:gt-referencing:20-SNAPSHOT
[warn] +- org.geotools:gt-api:20-SNAPSHOT
[warn] +- org.geotools:gt-main:20-SNAPSHOT
[warn] +- org.geotools:gt-data:20-SNAPSHOT
[warn] +- org.geotools:gt-shapefile:20-SNAPSHOT (C:\Users\Freddie\Google Drive\2. Programming\IdeaProjects\TheWeather\build.sbt#L21-22)
[warn] +- default:theweather_2.12:0.1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment