I just tried to create a Spring project using Inte...
# spring
c
I just tried to create a Spring project using IntelliJ Spring Initializer plugin, latest IJ Ultimate and latest version of all plugins. Chose latest stable spring boot:
2.1.6.RELEASE
The thing doesn't work 🙂 1. It generated a project with gradle kotlin-dsl syntax, but file is called
build.gradle
2. It used map syntax for extra variables, which then were referenced simply by name, which of course doesn't work
Copy code
extra["snippetsDir"] = file("build/generated-snippets")
extra["springBootAdminVersion"] = "2.1.5"
instead of
Copy code
val snippetsDir by extra { file("build/generated-snippets") }
val springBootAdminVersion by extra { "2.1.5" }
3.
Copy code
tasks.asciidoctor {
	inputs.dir(snippetsDir)
	dependsOn(test)
}
instead of
Copy code
tasks.asciidoctor {
	inputs.dir(snippetsDir)
	dependsOn(tasks.test)
}
test
is not visible in the asciidoctor lambda directly. 4. The wizard asked for the package to generate, but no sources roots were generated and therefore no packages either.