Search Gradle plugins

Version 0.1 (latest)

0.1

Created 10 October 2023.

The Caitlin Programming Language

Add this plugin to your build using the plugins DSL:

plugins {
  id("io.github.strangepleasures.caitlin.gradle-plugin") version "0.1"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("io.github.strangepleasures.caitlin:gradle-plugin:0.1")
      }
    }
    
    apply(plugin = "io.github.strangepleasures.caitlin.gradle-plugin")
  • Applying plugins to all subprojects .