Search Gradle plugins

Version 4.0.0

4.0.0

Created 03 October 2018.

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-config") version "4.0.0"
}

See also:

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