io.micronaut.starter.feature.cli.rocker.raw Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of micronaut-starter-core Show documentation
Show all versions of micronaut-starter-core Show documentation
Generates Micronaut applications
@import io.micronaut.starter.options.Language
@import io.micronaut.starter.options.TestFramework
@import io.micronaut.starter.options.BuildTool
@import io.micronaut.starter.application.Project
@import io.micronaut.starter.application.ApplicationType
@import java.util.List
@args (
Language language,
TestFramework testFramework,
BuildTool buildTool,
Project project,
List features,
ApplicationType applicationType
)
applicationType: @applicationType.getName()
defaultPackage: @project.getPackageName()
testFramework: @testFramework.getName()
sourceLanguage: @language.getName()
buildTool: @buildTool.getName()
features: @features.toString()