All Downloads are FREE. Search and download functionalities are using the official Maven repository.

tech.skot.tools.gradle.PluginGeneral.kt Maven / Gradle / Ivy

package tech.skot.tools.gradle

import org.gradle.api.Plugin
import org.gradle.api.Project
import tech.skot.tools.starter.StarterGenerator

class PluginGeneral:Plugin {
    override fun apply(project: Project) {
        project.task("initialize") {
            doLast {
                println("------- Generate from Plugin General App essai")
//                StarterGenerator(project.rootDir).generateSkeletton()
            }
        }.group = "SKot"



    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy