Skip to content
This repository has been archived by the owner on May 19, 2022. It is now read-only.

bjoernmayer/kotlin-react-bootstrap

Repository files navigation

Kotlin-React-Bootstrap

ktlint Java CI with Gradle

Bootstrap 4 components built with Kotlin React.

No release yet!

This README might make you think otherwise, but kotlin-react-bootstrap was not released, yet. First release version will be 0.1.0.

Setup

The library will be released on Github packages.

You need to authenticate in order to download from GitHub Packages.
For that generate a GitHub token here and select the read:packages scope.

Then, you need to add this repository:

// build.gradle.kts

repositories {
    // . . .
    maven {
        name = "GitHubPackages"
        url = uri("https://maven.pkg.github.com/bjoernmayer/kotlin-react-bootstrap")
        credentials {
            username = "<< PUT YOUR GITHUB USERNAME HERE >>"
            password = "<< PUT YOUR GITHUB TOKEN HERE>>"
        }
    }
    // . . .
}

To start using kotlin-react-bootstrap in your Kotlin/JS project, add the following dependency to the dependencies block inside your build.gradle.kts file:

// build.gradle.kts

dependencies {
    implementation("io.github.bjoernmayer:kotlin-react-bootstrap:<latest version>")
    // . . .
}

Roadmap (WIP)

You can find the roadmap in the ROADMAP.md.