fix: dummy task for Gradle semantic-release plugin

This commit is contained in:
Lucaskyy 2022-06-16 11:54:39 +02:00
parent 30d5c9a67c
commit f6a8911906
No known key found for this signature in database
GPG Key ID: 1530BFF96D1EEB89

View File

@ -19,4 +19,14 @@ dependencies {
implementation(kotlin("stdlib"))
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"
}
}