fix: gradle build script

Signed-off-by: oSumAtrIX <johan.melkonyan1@web.de>
This commit is contained in:
Canny1913 2022-05-05 20:19:59 +03:00 committed by oSumAtrIX
parent eab58aa0a2
commit 6ffba3ef0a
No known key found for this signature in database
GPG Key ID: A9B3094ACDB604B4
3 changed files with 9 additions and 7 deletions

View File

@ -20,7 +20,7 @@ repositories {
}
}
val patchesDependency = "app.revanced:revanced-patches:+"
val patchesDependency = "app.revanced:revanced-patches:1.0.0-dev.4"
dependencies {
implementation(kotlin("stdlib"))
@ -39,7 +39,7 @@ tasks {
exclude(dependency(patchesDependency))
}
manifest {
attributes("Main-Class" to "app.revanced.cli.Main")
attributes("Main-Class" to "app.revanced.cli.MainKt")
attributes("Implementation-Title" to project.name)
attributes("Implementation-Version" to project.version)
}

View File

@ -0,0 +1,7 @@
package app.revanced.cli
import picocli.CommandLine
internal fun main(args: Array<String>) {
CommandLine(MainCommand).execute(*args)
}

View File

@ -2,7 +2,6 @@ package app.revanced.cli
import app.revanced.patch.PatchLoader
import app.revanced.patch.Patches
import picocli.CommandLine
import picocli.CommandLine.*
import java.io.File
@ -57,8 +56,4 @@ internal object MainCommand : Runnable {
if (!wipe) return
File(cacheDirectory).deleteRecursively()
}
}
internal fun main(args: Array<String>) {
CommandLine(MainCommand).execute(*args)
}