Search Gradle plugins

org.taruts.djig

Adds a task for copying DJiG dynamic projects from the dev environment (that all the developers in the team can access) to the local development environment

https://djig.org/djig-gradle-plugin/

Sources: https://gitlab.com/pavel-taruts/gradle-plugins/djig-gradle-plugin.git

Version 1.0.0 (latest)

Created 16 March 2023.

Adds a task for copying DJiG dynamic projects
from the dev environment (that all the developers in the team can access)
to the local development environment

Using the plugins DSL:

plugins {
  id("org.taruts.djig") version "1.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("org.taruts:djig-gradle-plugin:1.0.0")
  }
}

apply(plugin = "org.taruts.djig")

Using the plugins DSL:

plugins {
  id "org.taruts.djig" version "1.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "org.taruts:djig-gradle-plugin:1.0.0"
  }
}

apply plugin: "org.taruts.djig"

Learn how to apply plugins to subprojects