ck.wirespec.plugin.gradle.gradle.0.10.1.source-code.WirespecPlugin.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gradle Show documentation
Show all versions of gradle Show documentation
Type safe wires made easy
package community.flock.wirespec.plugin.gradle
import org.gradle.api.Plugin
import org.gradle.api.Project
class WirespecPlugin : Plugin {
override fun apply(project: Project) {
project.tasks.create("wirespec", CompileWirespecTask::class.java)
}
}