Kotlin: Difference between revisions

From Chorke Wiki
Jump to navigation Jump to search
Line 26: Line 26:


==References==
==References==
{|
| valign="top" |
* [https://spring.io/guides/tutorials/spring-boot-kotlin/ Building web applications with Spring Boot and Kotlin]
* [https://kotlinlang.org/docs/tutorials/javascript/getting-started-idea/getting-started-with-intellij-idea.html Getting Started with Kotlin and JavaScript]
* [https://kotlinlang.org/docs/tutorials/javascript/getting-started-idea/getting-started-with-intellij-idea.html Getting Started with Kotlin and JavaScript]
* [https://kotlinlang.org/docs/tutorials/getting-started.html Getting Started with IntelliJ IDEA]
* [https://kotlinlang.org/docs/tutorials/getting-started.html Getting Started with IntelliJ IDEA]
Line 35: Line 38:
* [https://kotlinlang.org/docs/reference/kotlin-osgi.html Kotlin OSGi]
* [https://kotlinlang.org/docs/reference/kotlin-osgi.html Kotlin OSGi]
* [https://kotlinlang.org/docs/tutorials/build-tools.html Build Tools]
* [https://kotlinlang.org/docs/tutorials/build-tools.html Build Tools]
| valign="top" |
|}

Revision as of 00:22, 10 August 2021

<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