mirror of
https://github.com/revanced/revanced-cli.git
synced 2024-11-19 01:59:25 +01:00
fix: gradle build script
Signed-off-by: oSumAtrIX <johan.melkonyan1@web.de>
This commit is contained in:
parent
eab58aa0a2
commit
6ffba3ef0a
@ -20,7 +20,7 @@ repositories {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
val patchesDependency = "app.revanced:revanced-patches:+"
|
val patchesDependency = "app.revanced:revanced-patches:1.0.0-dev.4"
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation(kotlin("stdlib"))
|
implementation(kotlin("stdlib"))
|
||||||
@ -39,7 +39,7 @@ tasks {
|
|||||||
exclude(dependency(patchesDependency))
|
exclude(dependency(patchesDependency))
|
||||||
}
|
}
|
||||||
manifest {
|
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-Title" to project.name)
|
||||||
attributes("Implementation-Version" to project.version)
|
attributes("Implementation-Version" to project.version)
|
||||||
}
|
}
|
||||||
|
7
src/main/kotlin/app/revanced/cli/Main.kt
Normal file
7
src/main/kotlin/app/revanced/cli/Main.kt
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
package app.revanced.cli
|
||||||
|
|
||||||
|
import picocli.CommandLine
|
||||||
|
|
||||||
|
internal fun main(args: Array<String>) {
|
||||||
|
CommandLine(MainCommand).execute(*args)
|
||||||
|
}
|
@ -2,7 +2,6 @@ package app.revanced.cli
|
|||||||
|
|
||||||
import app.revanced.patch.PatchLoader
|
import app.revanced.patch.PatchLoader
|
||||||
import app.revanced.patch.Patches
|
import app.revanced.patch.Patches
|
||||||
import picocli.CommandLine
|
|
||||||
import picocli.CommandLine.*
|
import picocli.CommandLine.*
|
||||||
import java.io.File
|
import java.io.File
|
||||||
|
|
||||||
@ -58,7 +57,3 @@ internal object MainCommand : Runnable {
|
|||||||
File(cacheDirectory).deleteRecursively()
|
File(cacheDirectory).deleteRecursively()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
internal fun main(args: Array<String>) {
|
|
||||||
CommandLine(MainCommand).execute(*args)
|
|
||||||
}
|
|
Loading…
Reference in New Issue
Block a user