Kotlin: Difference between revisions
Jump to navigation
Jump to search
Line 38: | Line 38: | ||
* [https://kotlinlang.org/docs/tutorials/build-tools.html Kotlin » Build Tools] | * [https://kotlinlang.org/docs/tutorials/build-tools.html Kotlin » Build Tools] | ||
* [https://kotlinlang.org/docs/reference/kotlin-osgi.html Kotlin » OSGi] | * [https://kotlinlang.org/docs/reference/kotlin-osgi.html Kotlin » OSGi] | ||
| valign="top" | | |||
* [https://github.com/Baeldung/kotlin-tutorials/tree/master/core-kotlin-modules/core-kotlin-design-patterns Kotlin » Core » Design Patterns] | |||
* [https://github.com/Baeldung/kotlin-tutorials/tree/master/core-kotlin-modules/core-kotlin-datastructures Kotlin » Core » Data Structures] | |||
* [https://github.com/Baeldung/kotlin-tutorials/tree/master/core-kotlin-modules/core-kotlin-date-time Kotlin » Core » Date and Time] | |||
* [https://github.com/Baeldung/kotlin-tutorials/tree/master/core-kotlin-modules/core-kotlin-constructors Kotlin » Core » Constructors] | |||
* [https://github.com/Baeldung/kotlin-tutorials/tree/master/core-kotlin-modules/core-kotlin-concurrency Kotlin » Core » Concurrency] | |||
* [https://github.com/Baeldung/kotlin-tutorials/tree/master/core-kotlin-modules/core-kotlin-annotations Kotlin » Core » Annotations] | |||
* [https://github.com/Baeldung/kotlin-tutorials/tree/master/core-kotlin-companion Kotlin » Core » Companion] | |||
* [https://github.com/Baeldung/kotlin-tutorials/tree/master/core-kotlin-modules/core-kotlin-collections Kotlin » Core » Collections] | |||
* [https://github.com/Baeldung/kotlin-tutorials/tree/master/core-kotlin-modules/core-kotlin-advanced Kotlin » Core » Advanced] | |||
* [https://github.com/Baeldung/kotlin-tutorials/tree/master/core-kotlin-modules/core-kotlin-arrays Kotlin » Core » Arrays] | |||
| valign="top" | | | valign="top" | | ||
Line 44: | Line 56: | ||
* [https://kotlinlang.org/docs/java-interop.html Kotlin » Calling Java] | * [https://kotlinlang.org/docs/java-interop.html Kotlin » Calling Java] | ||
* [https://kotlinlang.org/docs/mixing-java-kotlin-intellij.html Kotlin » Mixing Java] | * [https://kotlinlang.org/docs/mixing-java-kotlin-intellij.html Kotlin » Mixing Java] | ||
|- | |- |
Revision as of 21:52, 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
| ||