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.

Add this plugin to your build using the plugins DSL:

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

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("software.onepiece.limits:software.onepiece.limits.gradle.plugin:0.3")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("software.onepiece.limits")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("software.onepiece.limits:software.onepiece.limits.gradle.plugin:0.3")
      }
    }
    
    apply(plugin = "software.onepiece.limits")
  • Applying plugins to all subprojects .