Kotlin: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
| (One intermediate revision by the same user not shown) | |||
| Line 1: | Line 1: | ||
< | {|class='wikitable' | ||
|valign='top' style='width:50%'| | |||
<syntaxhighlight lang='xml'> | |||
<properties> | <properties> | ||
<kotlin.version>1.3.72</kotlin.version> | |||
</properties> | </properties> | ||
</ | </syntaxhighlight> | ||
< | |valign='top' style='width:50%'| | ||
|- | |||
|valign='top'| | |||
<syntaxhighlight lang='xml'> | |||
<dependencies> | <dependencies> | ||
<dependency> | |||
<groupId>org.jetbrains.kotlin</groupId> | |||
<artifactId>kotlin-stdlib</artifactId> | |||
<version>${kotlin.version}</version> | |||
</dependency> | |||
</dependencies> | </dependencies> | ||
</ | </syntaxhighlight> | ||
< | |valign='top'| | ||
<syntaxhighlight lang='xml'> | |||
<dependencies> | <dependencies> | ||
<dependency> | |||
<groupId>org.jetbrains.kotlin</groupId> | |||
<artifactId>kotlin-osgi-bundle</artifactId> | |||
<version>${kotlin.version}</version> | |||
</dependency> | |||
</dependencies> | </dependencies> | ||
</ | </syntaxhighlight> | ||
|} | |||
==References== | ==References== | ||
{| | {|class='wikitable mw-collapsible' | ||
| valign= | !scope='col' style='text-align:left' colspan='3'| | ||
References | |||
|- | |||
|valign='top' style='width:33%'| | |||
* [https://spring.io/guides/tutorials/spring-boot-kotlin/ Kotlin » Web applications with Spring Boot] | * [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 Kotlin » Getting Started with JavaScript] | * [https://kotlinlang.org/docs/tutorials/javascript/getting-started-idea/getting-started-with-intellij-idea.html Kotlin » Getting Started with JavaScript] | ||
| Line 39: | Line 49: | ||
* [https://kotlinlang.org/docs/reference/kotlin-osgi.html Kotlin » OSGi] | * [https://kotlinlang.org/docs/reference/kotlin-osgi.html Kotlin » OSGi] | ||
| valign= | |valign='top' style='width:34%'| | ||
* [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-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-datastructures Kotlin » Core » Data Structures] | ||
| Line 51: | Line 61: | ||
* [https://github.com/Baeldung/kotlin-tutorials/tree/master/core-kotlin-modules/core-kotlin-arrays Kotlin » Core » Arrays] | * [https://github.com/Baeldung/kotlin-tutorials/tree/master/core-kotlin-modules/core-kotlin-arrays Kotlin » Core » Arrays] | ||
| valign= | |valign='top' style='width:33%'| | ||
* [https://github.com/Baeldung/kotlin-tutorials/tree/master/core-kotlin-modules/core-kotlin-lang-scope Kotlin » Core » Lang » Scope] | * [https://github.com/Baeldung/kotlin-tutorials/tree/master/core-kotlin-modules/core-kotlin-lang-scope Kotlin » Core » Lang » Scope] | ||
* [https://github.com/Baeldung/kotlin-tutorials/tree/master/core-kotlin-modules/core-kotlin-lang Kotlin » Core » Lang] | * [https://github.com/Baeldung/kotlin-tutorials/tree/master/core-kotlin-modules/core-kotlin-lang Kotlin » Core » Lang] | ||
| Line 58: | Line 68: | ||
* [https://github.com/Baeldung/kotlin-tutorials/tree/master/core-kotlin-modules/core-kotlin-io Kotlin » Core » IO] | * [https://github.com/Baeldung/kotlin-tutorials/tree/master/core-kotlin-modules/core-kotlin-io Kotlin » Core » IO] | ||
* [https://github.com/Baeldung/kotlin-tutorials/tree/master/core-kotlin-modules/core-kotlin Kotlin » Core] | * [https://github.com/Baeldung/kotlin-tutorials/tree/master/core-kotlin-modules/core-kotlin Kotlin » Core] | ||
|- | |- | ||
|valign='top'| | |||
| valign= | |||
* [https://kotlinlang.org/docs/java-to-kotlin-interop.html Kotlin » Calling from Java] | * [https://kotlinlang.org/docs/java-to-kotlin-interop.html Kotlin » Calling from Java] | ||
* [https://www.baeldung.com/kotlin/lombok Kotlin » With Lombok] | * [https://www.baeldung.com/kotlin/lombok Kotlin » With Lombok] | ||
| Line 72: | Line 78: | ||
* [https://github.com/Baeldung/kotlin-tutorials/tree/master/kotlin-js Kotlin » JS] | * [https://github.com/Baeldung/kotlin-tutorials/tree/master/kotlin-js Kotlin » JS] | ||
| valign= | |valign='top'| | ||
|valign='top'| | |||
|- | |- | ||
|valign='top'| | |||
| valign= | |||
* [[Spring Exception Handling]] | * [[Spring Exception Handling]] | ||
* [[JSON Schema Validation]] | * [[JSON Schema Validation]] | ||
| Line 92: | Line 94: | ||
* [[Java]] | * [[Java]] | ||
| valign= | |valign='top'| | ||
* [https://blog.ippon.tech/comparing-java-lts-releases/ Comparing Java LTS Releases] | * [https://blog.ippon.tech/comparing-java-lts-releases/ Comparing Java LTS Releases] | ||
* [[MapStruct]] | * [[MapStruct]] | ||
| Line 99: | Line 101: | ||
* [[Log4j2]] | * [[Log4j2]] | ||
| valign= | |valign='top'| | ||
|} | |} | ||
Latest revision as of 03:34, 6 March 2026
<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
|
References | ||
|---|---|---|