Search Gradle plugins

software.onepiece.limits

Plugin to generate immutable data structures (Kotlin source code) with collections that contain a limited set of elements addressed by coordinates. Also generates tools to diff data and (de)serialize such diffs.

https://github.com/jjohannes/onepiece-limits

Sources: https://github.com/jjohannes/onepiece-limits.git

Version 0.3 (latest)

Created 08 September 2022.

Plugin to generate immutable data structures (Kotlin source code) with collections that contain a limited set of elements addressed by coordinates. Also generates tools to diff data and (de)serialize such diffs.

Using the plugins DSL:

plugins {
  id("software.onepiece.limits") version "0.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("software.onepiece.limits:onepiece-limits:0.3")
  }
}

apply(plugin = "software.onepiece.limits")

Using the plugins DSL:

plugins {
  id "software.onepiece.limits" version "0.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "software.onepiece.limits:onepiece-limits:0.3"
  }
}

apply plugin: "software.onepiece.limits"

Learn how to apply plugins to subprojects