/* * This Kotlin source file was generated by the Gradle 'init' task. */ package moe.nea.archenemy import org.gradle.api.Project import org.gradle.api.Plugin /** * A simple 'hello world' plugin. */ class ArchenemyGreetingPlugin: Plugin { override fun apply(project: Project) { // Register a task project.tasks.register("greeting") { task -> task.doLast { println("Hello from plugin 'moe.nea.archenemy.greeting'") } } } }