Search Gradle plugins

Version 1.1.0 (latest)

Created 20 August 2021.

Gradle plugins and tasks to support Alfresco development

Using the plugins DSL:

plugins {
  id("eu.xenit.alfresco") version "1.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("eu.xenit.gradle:alfresco-sdk:1.1.0")
  }
}

apply(plugin = "eu.xenit.alfresco")

Using the plugins DSL:

plugins {
  id "eu.xenit.alfresco" version "1.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "eu.xenit.gradle:alfresco-sdk:1.1.0"
  }
}

apply plugin: "eu.xenit.alfresco"

Learn how to apply plugins to subprojects