-
Notifications
You must be signed in to change notification settings - Fork 20
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
osmesa Code Migration #54
Merged
jbouffard
merged 13 commits into
geotrellis:master
from
jbouffard:feature/osmesa-code-migration
Jun 12, 2018
Merged
Changes from all commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
f18c4d4
Created Version.scala for the vectorpipe package
jbouffard 09e7adb
Created Dependencies.scala for the vectorpipe package
jbouffard dc83bd4
Created assembly.sbt for the vectorpipe package
jbouffard 297718f
Added plugins for vectorpipe
jbouffard 51c9bca
Updated the build.sbt for vectorpipe
jbouffard 8c5e449
Migrated the OSM building code from osmesa to vectorpipe
jbouffard 2751655
Added derby.log and metastore_db to the gitignore
jbouffard f4f4ab2
Created the cmd subproject and moved ExtractMultiPolygons into it
jbouffard dd75be9
Added the sbt script
jbouffard 9b3f0b2
Created the OSMReaderSpec
jbouffard 13c9417
Bumped the version to 0.3.0
jbouffard 268bc10
Removed the Caching object
jbouffard 71d3c39
Refactored the FeatureRDD methods in OSMReader
jbouffard File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,4 +12,7 @@ | |
.ensime | ||
.ensime_cache/* | ||
clipping/* | ||
osmosis/* | ||
osmosis/* | ||
|
||
derby.log | ||
metastore_db/* |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
object Version { | ||
val vectorpipe = "0.3.0" | ||
val geotrellis = "2.0.0-RC1" | ||
val geomesa = "2.0.1" | ||
val spark = "2.2.0" | ||
val decline = "0.4.0-RC1" | ||
val monocle = "1.5.0-cats-M2" | ||
val cats = "1.0.0-RC1" | ||
val spire = "0.13.0" | ||
val scalaTest = "3.0.3" | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "0.14.5") | ||
This file contains 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't recall ever needing this. It certainly wasn't necessary for publishing artifacts, at least.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I've been using assemblies to test this PR, but I'm not sure if removing this will impact anything.