Search Gradle plugins

Version 0.2.0

Created 23 April 2019.

Gradle plugins and tasks to support Alfresco development

Using the plugins DSL:

plugins {
  id("eu.xenit.amp-base") version "0.2.0"
}

Using legacy plugin application:

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

apply(plugin = "eu.xenit.amp-base")

Using the plugins DSL:

plugins {
  id "eu.xenit.amp-base" version "0.2.0"
}

Using legacy plugin application:

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

apply plugin: "eu.xenit.amp-base"

Learn how to apply plugins to subprojects