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

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.github.pwssv67.plam:plam:0.3.1")
  }
}

apply(plugin = "io.github.pwssv67.plam")

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.pwssv67.plam:plam:0.3.1"
  }
}

apply plugin: "io.github.pwssv67.plam"

Learn how to apply plugins to subprojects