Update Gradle

This commit is contained in:
Emux 2023-04-14 10:20:58 +03:00
parent 6342756105
commit eef8ee3934
No known key found for this signature in database
GPG Key ID: 64ED9980896038C3
11 changed files with 9 additions and 9 deletions

View File

@ -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

View File

@ -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">

View File

@ -24,6 +24,7 @@ dependencies {
}
android {
namespace 'org.oscim.android.test'
compileSdk androidCompileSdk()
compileOptions {

View File

@ -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)
}
}

View File

@ -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)
}
}

View File

@ -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">

View File

@ -10,6 +10,7 @@ dependencies {
}
android {
namespace 'org.oscim.app'
compileSdk androidCompileSdk()
compileOptions {

View File

@ -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)
}
}

View File

@ -52,7 +52,7 @@ tasks.withType(JavaCompile) {
task nativesJar(type: Jar) {
dependsOn copyVtmResources, copyVtmThemesResources
classifier 'natives'
archiveClassifier = 'natives'
from('natives')
}

View File

@ -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 {

View File

@ -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 {