Skip to content

Commit

Permalink
Update Gradle
Browse files Browse the repository at this point in the history
  • Loading branch information
devemux86 committed Apr 14, 2023
1 parent 6342756 commit eef8ee3
Show file tree
Hide file tree
Showing 11 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
1 change: 0 additions & 1 deletion vtm-android-example/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.oscim.android.test"
android:installLocation="auto"
android:versionCode="1"
android:versionName="1.0">
Expand Down
1 change: 1 addition & 0 deletions vtm-android-example/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ dependencies {
}

android {
namespace 'org.oscim.android.test'
compileSdk androidCompileSdk()

compileOptions {
Expand Down
2 changes: 1 addition & 1 deletion vtm-android-gdx/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ sourceSets {

file('natives').eachDir() { dir ->
task("nativesJar-${dir.name}", type: Jar) {
classifier "natives-${dir.name}"
archiveClassifier = "natives-${dir.name}"
from(dir.path)
}
}
Expand Down
2 changes: 1 addition & 1 deletion vtm-android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ sourceSets {

file('natives').eachDir() { dir ->
task("nativesJar-${dir.name}", type: Jar) {
classifier "natives-${dir.name}"
archiveClassifier = "natives-${dir.name}"
from(dir.path)
}
}
Expand Down
1 change: 0 additions & 1 deletion vtm-app/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.oscim.app"
android:installLocation="auto"
android:versionCode="1"
android:versionName="1.0">
Expand Down
1 change: 1 addition & 0 deletions vtm-app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ dependencies {
}

android {
namespace 'org.oscim.app'
compileSdk androidCompileSdk()

compileOptions {
Expand Down
2 changes: 1 addition & 1 deletion vtm-desktop/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ sourceSets {

file('natives').eachDir() { dir ->
task("nativesJar-${dir.name}", type: Jar) {
classifier "natives-${dir.name}"
archiveClassifier = "natives-${dir.name}"
from(dir.path)
}
}
Expand Down
2 changes: 1 addition & 1 deletion vtm-ios/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ tasks.withType(JavaCompile) {

task nativesJar(type: Jar) {
dependsOn copyVtmResources, copyVtmThemesResources
classifier 'natives'
archiveClassifier = 'natives'
from('natives')
}

Expand Down
2 changes: 1 addition & 1 deletion vtm-playground/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ run {
}

task fatJar(type: Jar, dependsOn: configurations.runtimeClasspath) {
classifier 'jar-with-dependencies'
archiveClassifier = 'jar-with-dependencies'
from { configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) } }
exclude 'META-INF/*.DSA', 'META-INF/*.RSA', 'META-INF/*.SF', 'META-INF/services/io.jeo.data.Driver'
manifest {
Expand Down
2 changes: 1 addition & 1 deletion vtm-theme-comparator/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ sourceSets {
mainClassName = "org.oscim.theme.comparator.Main"

task fatJar(type: Jar, dependsOn: configurations.runtimeClasspath) {
classifier 'jar-with-dependencies'
archiveClassifier = 'jar-with-dependencies'
from { configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) } }
exclude 'META-INF/*.DSA', 'META-INF/*.RSA', 'META-INF/*.SF'
manifest {
Expand Down

0 comments on commit eef8ee3

Please sign in to comment.