eu.xenit.alfresco
Owner: Xenit solutions
Gradle plugins and tasks to support Alfresco development
https://github.com/xenit-eu/alfresco-gradle-sdk
Sources: https://github.com/xenit-eu/alfresco-gradle-sdk
Version 1.2.0 (latest)
1.2.0
Created 06 August 2024.
Gradle plugins and tasks to support Alfresco development
Using the plugins DSL:
plugins {
id("eu.xenit.alfresco") version "1.2.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("eu.xenit.gradle:alfresco-sdk:1.2.0")
}
}
apply(plugin = "eu.xenit.alfresco")
Using the plugins DSL:
plugins {
id "eu.xenit.alfresco" version "1.2.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "eu.xenit.gradle:alfresco-sdk:1.2.0"
}
}
apply plugin: "eu.xenit.alfresco"