Samples: use Mapsforge release version

This commit is contained in:
Emux
2019-10-23 19:02:18 +03:00
parent 2fa5afec11
commit cb0109ba42
3 changed files with 10 additions and 25 deletions

View File

@@ -44,7 +44,6 @@ subprojects {
google() google()
maven { url 'https://repo.boundlessgeo.com/main/' } maven { url 'https://repo.boundlessgeo.com/main/' }
jcenter() jcenter()
maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
maven { url 'https://jitpack.io' } maven { url 'https://jitpack.io' }
} }

View File

@@ -1,12 +1,5 @@
apply plugin: 'com.android.application' apply plugin: 'com.android.application'
/*
configurations.all {
// Check latest snapshot on every build
resolutionStrategy.cacheChangingModulesFor 0, 'seconds'
}
*/
dependencies { dependencies {
implementation project(':vtm-android') implementation project(':vtm-android')
implementation project(':vtm-android-mvt') implementation project(':vtm-android-mvt')
@@ -23,11 +16,11 @@ dependencies {
implementation project(':vtm-gdx') implementation project(':vtm-gdx')
implementation project(':vtm-gdx-poi3d') implementation project(':vtm-gdx-poi3d')
implementation 'org.mapsforge:mapsforge-poi-android:master-SNAPSHOT' implementation 'org.mapsforge:mapsforge-poi-android:0.12.0'
implementation 'org.mapsforge:sqlite-android:master-SNAPSHOT:natives-armeabi-v7a' implementation 'org.mapsforge:sqlite-android:0.12.0:natives-armeabi-v7a'
implementation 'org.mapsforge:sqlite-android:master-SNAPSHOT:natives-arm64-v8a' implementation 'org.mapsforge:sqlite-android:0.12.0:natives-arm64-v8a'
implementation 'org.mapsforge:sqlite-android:master-SNAPSHOT:natives-x86' implementation 'org.mapsforge:sqlite-android:0.12.0:natives-x86'
implementation 'org.mapsforge:sqlite-android:master-SNAPSHOT:natives-x86_64' implementation 'org.mapsforge:sqlite-android:0.12.0:natives-x86_64'
} }
android { android {

View File

@@ -1,12 +1,5 @@
apply plugin: 'application' apply plugin: 'application'
/*
configurations.all {
// Check latest snapshot on every build
resolutionStrategy.cacheChangingModulesFor 0, 'seconds'
}
*/
dependencies { dependencies {
implementation project(':vtm-desktop-lwjgl') implementation project(':vtm-desktop-lwjgl')
file("${rootDir}/vtm-desktop/natives").eachDir() { dir -> file("${rootDir}/vtm-desktop/natives").eachDir() { dir ->
@@ -17,11 +10,11 @@ dependencies {
implementation 'com.fifesoft:rsyntaxtextarea:2.6.1' implementation 'com.fifesoft:rsyntaxtextarea:2.6.1'
implementation 'com.jtattoo:JTattoo:1.6.11' implementation 'com.jtattoo:JTattoo:1.6.11'
implementation 'org.mapsforge:mapsforge-core:master-SNAPSHOT' implementation 'org.mapsforge:mapsforge-core:0.12.0'
implementation 'org.mapsforge:mapsforge-map:master-SNAPSHOT' implementation 'org.mapsforge:mapsforge-map:0.12.0'
implementation 'org.mapsforge:mapsforge-map-awt:master-SNAPSHOT' implementation 'org.mapsforge:mapsforge-map-awt:0.12.0'
implementation 'org.mapsforge:mapsforge-map-reader:master-SNAPSHOT' implementation 'org.mapsforge:mapsforge-map-reader:0.12.0'
implementation 'org.mapsforge:mapsforge-themes:master-SNAPSHOT' implementation 'org.mapsforge:mapsforge-themes:0.12.0'
implementation 'net.sf.kxml:kxml2:2.3.0' implementation 'net.sf.kxml:kxml2:2.3.0'
} }