You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
832 B
18 lines
832 B
[[kotlin-requirements]] |
|
= Requirements |
|
:page-section-summary-toc: 1 |
|
|
|
Spring Framework supports Kotlin 2.2+ and requires |
|
https://search.maven.org/artifact/org.jetbrains.kotlin/kotlin-stdlib[`kotlin-stdlib`] |
|
and https://search.maven.org/artifact/org.jetbrains.kotlin/kotlin-reflect[`kotlin-reflect`] |
|
to be present on the classpath. They are provided by default if you bootstrap a Kotlin project on |
|
https://start.spring.io/#!language=kotlin&type=gradle-project[start.spring.io]. |
|
|
|
NOTE: The {jackson-github-org}/jackson-module-kotlin[Jackson Kotlin module] is required |
|
for serializing or deserializing JSON data for Kotlin classes with Jackson, so make sure to add the |
|
`com.fasterxml.jackson.module:jackson-module-kotlin` dependency to your project if you have such need. |
|
It is automatically registered when found in the classpath. |
|
|
|
|
|
|
|
|
|
|