io.github.zenhelix:multiplatform-client-web-bom

A set of common dependencies


License
Apache-2.0

Documentation

Dependency Hub

A centralized hub 🎯 for all your Kotlin projects! 📦 This powerhouse consolidates shared libraries, tools, and frameworks, making dependency management a breeze.

Installation 🛠️ And Usage 🚀

gradle-plugins

gradle-plugins-toml

Installation

settings.gradle.kts
dependencyResolutionManagement {
    versionCatalogs {
        create("gradlePlugins") {
            from("io.github.zenhelix:gradle-plugins-toml:x.y.z")
        }
    }
}

Usage

build.gradle.kts
plugins {
    alias(gradlePlugins.somePlugin)
}
build.gradle.kts
dependencies {
    implementation(gradlePlugins.someDependency)
}
gradle-plugins-bom

Usage

build.gradle.kts
dependencies {
    implementation(platform("io.github.zenhelix:gradle-plugins-bom:x.y.z"))
}

gradle-plugins-dev

gradle-plugins-dev-toml

Installation

settings.gradle.kts
dependencyResolutionManagement {
    versionCatalogs {
        create("gradlePluginsDev") {
            from("io.github.zenhelix:gradle-plugins-dev-toml:x.y.z")
        }
    }
}

Usage

build.gradle.kts
plugins {
    alias(gradlePluginsDev.somePlugin)
}
build.gradle.kts
dependencies {
    implementation(gradlePluginsDev.someDependency)
}
gradle-plugins-dev-bom

Usage

build.gradle.kts
dependencies {
    implementation(platform("io.github.zenhelix:gradle-plugins-dev-bom:x.y.z"))
}

multiplatform-client-android-platform

multiplatform-client-android-platform-toml

Installation

settings.gradle.kts
dependencyResolutionManagement {
    versionCatalogs {
        create("libs") {
            from("io.github.zenhelix:multiplatform-client-android-platform-toml:x.y.z")
        }
    }
}

Usage

build.gradle.kts
plugins {
    alias(libs.somePlugin)
}
build.gradle.kts
dependencies {
    implementation(libs.someDependency)
}
multiplatform-client-android-platform-bom

Usage

build.gradle.kts
dependencies {
    implementation(platform("io.github.zenhelix:multiplatform-client-android-platform-bom:x.y.z"))
}

License 📜

Licensed under the Apache License, Version 2.0. For more details, see the LICENSE file in the root of this repository.