Search Gradle plugins

io.github.pwssv67.plam

Owner: Egor

A plugin that helps you modularise projects and verify dependencies between different types of modules

https://github.com/pwssv67/PLAM.git

Sources: https://github.com/pwssv67/PLAM.git

Version 0.3.1 (latest)

Created 13 June 2023.

A plugin that helps you modularise projects and verify dependencies between different types of modules

Add this plugin to your build using the plugins DSL:

plugins {
  id("io.github.pwssv67.plam") version "0.3.1"
}

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("io.github.pwssv67.plam:io.github.pwssv67.plam.gradle.plugin:0.3.1")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("io.github.pwssv67.plam")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("io.github.pwssv67.plam:io.github.pwssv67.plam.gradle.plugin:0.3.1")
      }
    }
    
    apply(plugin = "io.github.pwssv67.plam")
  • Applying plugins to all subprojects .