A centralized hub 🎯 for all your Kotlin projects! 📦 This powerhouse consolidates shared libraries, tools, and frameworks, making dependency management a breeze.
gradle-plugins-toml
Installation
dependencyResolutionManagement {
versionCatalogs {
create("gradlePlugins") {
from("io.github.zenhelix:gradle-plugins-toml:x.y.z")
}
}
}
Usage
plugins {
alias(gradlePlugins.somePlugin)
}
dependencies {
implementation(gradlePlugins.someDependency)
}
gradle-plugins-bom
Usage
dependencies {
implementation(platform("io.github.zenhelix:gradle-plugins-bom:x.y.z"))
}
gradle-plugins-dev-toml
Installation
dependencyResolutionManagement {
versionCatalogs {
create("gradlePluginsDev") {
from("io.github.zenhelix:gradle-plugins-dev-toml:x.y.z")
}
}
}
Usage
plugins {
alias(gradlePluginsDev.somePlugin)
}
dependencies {
implementation(gradlePluginsDev.someDependency)
}
gradle-plugins-dev-bom
Usage
dependencies {
implementation(platform("io.github.zenhelix:gradle-plugins-dev-bom:x.y.z"))
}
multiplatform-client-android-platform-toml
Installation
dependencyResolutionManagement {
versionCatalogs {
create("libs") {
from("io.github.zenhelix:multiplatform-client-android-platform-toml:x.y.z")
}
}
}
Usage
plugins {
alias(libs.somePlugin)
}
dependencies {
implementation(libs.someDependency)
}
multiplatform-client-android-platform-bom
Usage
dependencies {
implementation(platform("io.github.zenhelix:multiplatform-client-android-platform-bom:x.y.z"))
}
Licensed under the Apache License, Version 2.0. For more details, see the LICENSE file in the root of this repository.