dev.teogor.ceres.kotlin.library
Owner: Teodor Grigor
Streamline Kotlin Library Development with a Standardized Convention
https://source.teogor.dev/ceres
Sources: https://github.com/teogor/ceres
Version 1.0.0-alpha05 (latest)
1.0.0-alpha05
Created 15 April 2024.
Streamline Kotlin Library Development with a Standardized Convention
Using the plugins DSL:
plugins {
id("dev.teogor.ceres.kotlin.library") version "1.0.0-alpha05"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("dev.teogor.ceres.plugin:library-convention:1.0.0-alpha05")
}
}
apply(plugin = "dev.teogor.ceres.kotlin.library")
Using the plugins DSL:
plugins {
id "dev.teogor.ceres.kotlin.library" version "1.0.0-alpha05"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "dev.teogor.ceres.plugin:library-convention:1.0.0-alpha05"
}
}
apply plugin: "dev.teogor.ceres.kotlin.library"