vtm-mvt module with new MVT tile decoder (#481)

This commit is contained in:
Robin
2018-01-12 10:02:04 +11:00
committed by Emux
parent 5093f292ba
commit d049d378dd
15 changed files with 484 additions and 2 deletions

17
vtm-mvt/build.gradle Normal file
View File

@@ -0,0 +1,17 @@
apply plugin: 'java-library'
apply plugin: 'maven'
dependencies {
api project(':vtm')
api 'com.wdtinc:mapbox-vector-tile:2.0.0'
}
sourceSets {
main.java.srcDirs = ['src']
}
if (project.hasProperty("SONATYPE_USERNAME")) {
afterEvaluate {
project.apply from: "${rootProject.projectDir}/deploy.gradle"
}
}