Kotlin: Difference between revisions
Jump to navigation
Jump to search
Line 28: | Line 28: | ||
{| | {| | ||
| valign="top" | | | valign="top" | | ||
* [https://spring.io/guides/tutorials/spring-boot-kotlin/ | * [https://spring.io/guides/tutorials/spring-boot-kotlin/ Kotlin » Web applications with Spring Boot] | ||
* [https://kotlinlang.org/docs/tutorials/javascript/getting-started-idea/getting-started-with-intellij-idea.html Getting Started with | * [https://kotlinlang.org/docs/tutorials/javascript/getting-started-idea/getting-started-with-intellij-idea.html Kotlin » Getting Started with JavaScript] | ||
* [https://kotlinlang.org/docs/tutorials/getting-started.html Getting Started with | * [https://kotlinlang.org/docs/tutorials/getting-started-eclipse.html Kotlin » Getting Started with Eclipse] | ||
* [https://kotlinlang.org/docs/tutorials/getting-started | * [https://kotlinlang.org/docs/tutorials/getting-started.html Kotlin » Getting Started with IntelliJ] | ||
* [https://realkotlin.com/tutorials/2018-06-26-multiline-string-literals-in-kotlin/ Kotlin Multiline String Literals] | * [https://realkotlin.com/tutorials/2018-06-26-multiline-string-literals-in-kotlin/ Kotlin » Multiline String Literals] | ||
* [https://kotlinlang.org/api/latest/jvm/stdlib/ Kotlin Standard Library] | * [https://kotlinlang.org/api/latest/jvm/stdlib/ Kotlin » Standard Library] | ||
* [https://kotlinlang.org/docs/reference/using-maven.html Kotlin Maven Build] | * [https://kotlinlang.org/docs/reference/using-maven.html Kotlin » Maven Build] | ||
* [https://kotlinlang.org/api/latest/kotlin.test/ Kotlin Test Library] | * [https://kotlinlang.org/api/latest/kotlin.test/ Kotlin » Test Library] | ||
* [https://kotlinlang.org/docs/ | * [https://kotlinlang.org/docs/tutorials/build-tools.html Kotlin » Build Tools] | ||
* [https://kotlinlang.org/docs/ | * [https://kotlinlang.org/docs/reference/kotlin-osgi.html Kotlin » OSGi] | ||
| valign="top" | | | valign="top" | | ||
* [https://kotlinlang.org/docs/java-to-kotlin-interop.html Kotlin » Calling from Java] | |||
* [https://kotlinlang.org/docs/java-to-kotlin-interop.html Calling | |||
* [https://www.baeldung.com/kotlin/lombok Kotlin » With Lombok] | * [https://www.baeldung.com/kotlin/lombok Kotlin » With Lombok] | ||
* [https://kotlinlang.org/docs/java-interop.html Kotlin » Calling Java] | |||
* [https://kotlinlang.org/docs/mixing-java-kotlin-intellij.html Kotlin » Mixing Java] | |||
| valign="top" | | | valign="top" | |
Revision as of 21:38, 13 February 2024
<properties>
<kotlin.version>1.3.72</kotlin.version>
</properties>
<dependencies>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib</artifactId>
<version>${kotlin.version}</version>
</dependency>
</dependencies>
<dependencies>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-osgi-bundle</artifactId>
<version>${kotlin.version}</version>
</dependency>
</dependencies>
References
| ||