mirror of
https://github.com/recloudstream/gradle.git
synced 2024-08-14 23:56:59 +00:00
i am a monkey
This commit is contained in:
parent
90beeee220
commit
2b98fcdfde
1 changed files with 5 additions and 3 deletions
|
@ -12,10 +12,12 @@ fun Project.makeManifest(skipClass: Boolean): PluginManifest {
|
||||||
"No version is set"
|
"No version is set"
|
||||||
}
|
}
|
||||||
|
|
||||||
require(!skipClass && extension.pluginClassName != null) {
|
if (!skipClass) {
|
||||||
"No plugin class found, make sure your plugin class is annotated with @CloudstreamPlugin"
|
require(extension.pluginClassName != null) {
|
||||||
|
"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,
|
||||||
|
|
Loading…
Reference in a new issue