Set up project structure

This commit is contained in:
2024-10-20 10:27:20 +01:00
commit 989027955c
12 changed files with 690 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
package ltd.hlaeja.plugin
import org.gradle.api.Plugin
import org.gradle.api.Project
@Suppress("unused")
class CorePlugin : Plugin<Project> {
/**
* Register Extensions and Tasks.
*/
override fun apply(project: Project) {
// TODO register Extensions and Tasks
}
}