mirror of
https://github.com/ReVanced/revanced-patches.git
synced 2024-11-10 01:01:56 +01:00
fix: dummy task for Gradle semantic-release plugin
This commit is contained in:
parent
30d5c9a67c
commit
f6a8911906
1 changed files with 10 additions and 0 deletions
|
@ -19,4 +19,14 @@ dependencies {
|
||||||
implementation(kotlin("stdlib"))
|
implementation(kotlin("stdlib"))
|
||||||
|
|
||||||
implementation("app.revanced:revanced-patcher:1.1.0")
|
implementation("app.revanced:revanced-patcher:1.1.0")
|
||||||
|
}
|
||||||
|
|
||||||
|
tasks {
|
||||||
|
// Dummy task to fix the Gradle semantic-release plugin.
|
||||||
|
// Remove this if you forked it to support building only.
|
||||||
|
// Tracking issue: https://github.com/KengoTODA/gradle-semantic-release-plugin/issues/435
|
||||||
|
register<DefaultTask>("publish") {
|
||||||
|
group = "publish"
|
||||||
|
description = "Dummy task"
|
||||||
|
}
|
||||||
}
|
}
|
Loading…
Reference in a new issue