Search Gradle plugins

Version 1.0.0-alpha05 (latest)

1.0.0-alpha05

Created 15 April 2024.

Streamline Kotlin Library Development with a Standardized Convention

Add this plugin to your build using the plugins DSL:

plugins {
  id("dev.teogor.ceres.kotlin.library") version "1.0.0-alpha05"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("dev.teogor.ceres.plugin:library-convention:1.0.0-alpha05")
      }
    }
    
    apply(plugin = "dev.teogor.ceres.kotlin.library")
  • Applying plugins to all subprojects .