Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/Kotlin/kotlinx.support
Extension and top-level functions to use JDK7/JDK8 features in Kotlin 1.0
https://github.com/Kotlin/kotlinx.support
Last synced: 3 months ago
JSON representation
Extension and top-level functions to use JDK7/JDK8 features in Kotlin 1.0
- Host: GitHub
- URL: https://github.com/Kotlin/kotlinx.support
- Owner: Kotlin
- Archived: true
- Created: 2016-04-15T16:23:59.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2019-02-16T02:07:37.000Z (almost 6 years ago)
- Last Synced: 2024-06-06T03:35:06.005Z (6 months ago)
- Language: Kotlin
- Homepage:
- Size: 23.4 KB
- Stars: 54
- Watchers: 24
- Forks: 8
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- trackawesomelist - Kotlin/kotlinx.support (⭐55) - Extension and top-level functions to use JDK7/JDK8 features in Kotlin 1.0. (Recently Updated / [Sep 04, 2024](/content/2024/09/04/README.md))
README
# kotlinx.support
Provides extension and top-level functions to use JDK7/JDK8 features in Kotlin 1.0.In Kotlin 1.1+ please use the standard library artifacts instead: [`kotlin-stdlib-jdk7`](https://mvnrepository.com/artifact/org.jetbrains.kotlin/kotlin-stdlib-jdk7) and [`kotlin-stdlib-jdk8`](https://mvnrepository.com/artifact/org.jetbrains.kotlin/kotlin-stdlib-jdk8).
[![obsolete JetBrains project](http://jb.gg/badges/obsolete.svg)](https://confluence.jetbrains.com/display/ALL/JetBrains+on+GitHub) [ ![Download](https://api.bintray.com/packages/kotlin/kotlinx.support/kotlinx.support/images/download.svg) ](https://bintray.com/kotlin/kotlinx.support/kotlinx.support/_latestVersion)
## Maven
Add jcenter repository (if you don't have it yet)
```xml
false
central
bintray
https://jcenter.bintray.com```
Add a dependency:
```xml
org.jetbrains.kotlinx
kotlinx-support-jdk8
0.3```
## Gradle
Just add a dependency:
```groovy
compile 'org.jetbrains.kotlinx:kotlinx-support-jdk8:0.3'
```jcenter repository should be configured by default in gradle, but if it's not you may need to include it:
```groovy
repositories {
jcenter()
}
```