Search Gradle plugins

Version 5.0.0

5.0.0

Created 20 January 2020.

A gradle plugin to create Alfresco docker images with extensions

Add this plugin to your build using the plugins DSL:

plugins {
  id("eu.xenit.docker") version "5.0.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("eu.xenit.gradle:alfresco-docker-plugin:5.0.0")
      }
    }
    
    apply(plugin = "eu.xenit.docker")
  • Applying plugins to all subprojects .