mirror of
https://github.com/recloudstream/gradle.git
synced 2024-08-14 23:56:59 +00:00
oops
This commit is contained in:
parent
b96f8a062e
commit
90beeee220
3 changed files with 3 additions and 26 deletions
|
@ -5,18 +5,17 @@ import com.lagradost.cloudstream3.gradle.getCloudstream
|
||||||
import com.lagradost.cloudstream3.gradle.entities.PluginManifest
|
import com.lagradost.cloudstream3.gradle.entities.PluginManifest
|
||||||
import groovy.json.JsonBuilder
|
import groovy.json.JsonBuilder
|
||||||
|
|
||||||
fun Project.makeManifest(skipClass: Boolean?): PluginManifest {
|
fun Project.makeManifest(skipClass: Boolean): PluginManifest {
|
||||||
val extension = this.extensions.getCloudstream()
|
val extension = this.extensions.getCloudstream()
|
||||||
|
|
||||||
require(this.version != "unspecified") {
|
require(this.version != "unspecified") {
|
||||||
"No version is set"
|
"No version is set"
|
||||||
}
|
}
|
||||||
|
|
||||||
require((skipClass == null || !skipClass) && extension.pluginClassName != null) {
|
require(!skipClass && extension.pluginClassName != null) {
|
||||||
"No plugin class found, make sure your plugin class is annotated with @CloudstreamPlugin"
|
"No plugin class found, make sure your plugin class is annotated with @CloudstreamPlugin"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
return PluginManifest(
|
return PluginManifest(
|
||||||
pluginClassName = extension.pluginClassName,
|
pluginClassName = extension.pluginClassName,
|
||||||
name = this.name,
|
name = this.name,
|
||||||
|
|
|
@ -1,22 +0,0 @@
|
||||||
package com.lagradost.cloudstream3.gradle.tasks
|
|
||||||
|
|
||||||
import com.lagradost.cloudstream3.gradle.getCloudstream
|
|
||||||
import com.lagradost.cloudstream3.gradle.makeManifest
|
|
||||||
import org.gradle.api.DefaultTask
|
|
||||||
import org.gradle.api.tasks.AbstractCopyTask
|
|
||||||
import org.gradle.api.tasks.Input
|
|
||||||
import org.gradle.api.tasks.TaskAction
|
|
||||||
import org.gradle.api.tasks.options.Option
|
|
||||||
import java.nio.charset.StandardCharsets
|
|
||||||
import groovy.json.JsonBuilder
|
|
||||||
|
|
||||||
abstract class DumpManifestTask : DefaultTask() {
|
|
||||||
@TaskAction
|
|
||||||
fun dumpManifest() {
|
|
||||||
val manifestFile = project.buildDir.resolve("${project.name}.json")
|
|
||||||
|
|
||||||
manifestFile.writeText(
|
|
||||||
JsonBuilder(project.makeManifest()).toPrettyString()
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -70,7 +70,7 @@ fun registerTasks(project: Project) {
|
||||||
}
|
}
|
||||||
|
|
||||||
manifestFile.writeText(
|
manifestFile.writeText(
|
||||||
JsonBuilder(project.makeManifest(),
|
JsonBuilder(project.makeManifest(false),
|
||||||
JsonGenerator.Options()
|
JsonGenerator.Options()
|
||||||
.excludeNulls()
|
.excludeNulls()
|
||||||
.build()
|
.build()
|
||||||
|
|
Loading…
Reference in a new issue