Skip to content

Commit

Permalink
Merge pull request #293 from xenit-eu/DEVEM-528-tris
Browse files Browse the repository at this point in the history
DEVEM-528 Add descriptions to plugins
  • Loading branch information
thijslemmens committed Feb 3, 2023
2 parents 211b562 + 29864da commit e40a758
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -51,22 +51,27 @@ gradlePlugin {
dockerAlfresco {
id = "eu.xenit.docker-alfresco"
implementationClass = "eu.xenit.gradle.docker.alfresco.DockerAlfrescoPlugin"
description = "Plugin that facilitates the creation of docker images for Alfresco and Share with custom modules"
}
dockerConfig {
id = "eu.xenit.docker-config"
implementationClass = "eu.xenit.gradle.docker.config.DockerConfigPlugin"
description = "Plugin that configures the communication with the docker daemon and registries"
}
docker {
id = "eu.xenit.docker"
implementationClass = "eu.xenit.gradle.docker.core.DockerPlugin"
description = "Plugin that enables you to build docker images"
}
dockerCompose {
id = "eu.xenit.docker-compose"
implementationClass = "eu.xenit.gradle.docker.compose.DockerComposePlugin"
description = "Plugin that enables running docker-compose setups from Gradle"
}
dockerComposeAuto {
id = "eu.xenit.docker-compose.auto"
implementationClass = "eu.xenit.gradle.docker.compose.DockerComposeAutoPlugin"
description = "This plugin is an extension of eu.xenit.docker-compose that automatically uses dockerCompose.fromProject() for all projects in your Gradle build."
}
}
testSourceSets(sourceSets.test, sourceSets.integrationTest)
Expand Down

0 comments on commit e40a758

Please sign in to comment.