Kotlin: Difference between revisions

From Chorke Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
 
Line 3: Line 3:
<syntaxhighlight lang='xml'>
<syntaxhighlight lang='xml'>
<properties>
<properties>
    <kotlin.version>1.3.72</kotlin.version>
  <kotlin.version>1.3.72</kotlin.version>
</properties>
</properties>
</syntaxhighlight>
</syntaxhighlight>
Line 12: Line 12:
<syntaxhighlight lang='xml'>
<syntaxhighlight lang='xml'>
<dependencies>
<dependencies>
    <dependency>
  <dependency>
        <groupId>org.jetbrains.kotlin</groupId>
    <groupId>org.jetbrains.kotlin</groupId>
        <artifactId>kotlin-stdlib</artifactId>
    <artifactId>kotlin-stdlib</artifactId>
        <version>${kotlin.version}</version>
    <version>${kotlin.version}</version>
    </dependency>
  </dependency>
</dependencies>
</dependencies>
</syntaxhighlight>
</syntaxhighlight>
Line 23: Line 23:
<syntaxhighlight lang='xml'>
<syntaxhighlight lang='xml'>
<dependencies>
<dependencies>
    <dependency>
  <dependency>
        <groupId>org.jetbrains.kotlin</groupId>
    <groupId>org.jetbrains.kotlin</groupId>
        <artifactId>kotlin-osgi-bundle</artifactId>
    <artifactId>kotlin-osgi-bundle</artifactId>
        <version>${kotlin.version}</version>
    <version>${kotlin.version}</version>
    </dependency>
  </dependency>
</dependencies>
</dependencies>
</syntaxhighlight>
</syntaxhighlight>

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