Skip to content

Commit

Permalink
Grace: rename Gradle plugin properties
Browse files Browse the repository at this point in the history
  • Loading branch information
rainboyan committed Dec 12, 2023
1 parent b2ee1cc commit f96a71f
Show file tree
Hide file tree
Showing 9 changed files with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions grace-gradle-plugin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -38,49 +38,49 @@ dependencies {

gradlePlugin {
plugins {
grailsCore {
graceCore {
displayName = "Grace Core Gradle Plugin"
description = 'The main Grace gradle plugin implementation'
id = 'org.graceframework.grace-core'
implementationClass = 'org.grails.gradle.plugin.core.GrailsGradlePlugin'
}
grailsDoc {
graceDoc {
displayName = "Grace Doc Gradle Plugin"
description = 'Adds Grace doc publishing support'
id = 'org.graceframework.grace-doc'
implementationClass = 'org.grails.gradle.plugin.doc.GrailsDocGradlePlugin'
}
grailsGsp {
graceGsp {
displayName = "Grace GSP Gradle Plugin"
description = 'A plugin that adds support for compiling Groovy Server Pages (GSP)'
id = 'org.graceframework.grace-gsp'
implementationClass = 'org.grails.gradle.plugin.web.gsp.GroovyPagePlugin'
}
grailsPlugin {
gracePlugin {
displayName = "Grace-Plugin Gradle Plugin"
description = 'A Gradle plugin for Grace plugins'
id = 'org.graceframework.grace-plugin'
implementationClass = 'org.grails.gradle.plugin.core.GrailsPluginGradlePlugin'
}
grailsProfile {
graceProfile {
displayName = "Grace Profile Gradle Plugin"
description = 'A plugin that is capable of compiling a Grace profile into a JAR file for distribution'
id = 'org.graceframework.grace-profile'
implementationClass = 'org.grails.gradle.plugin.profiles.GrailsProfileGradlePlugin'
}
grailsWeb {
graceWeb {
displayName = "Grace Web Gradle Plugin"
description = 'Adds web specific extensions'
id = 'org.graceframework.grace-web'
implementationClass = 'org.grails.gradle.plugin.web.GrailsWebGradlePlugin'
}
grailsPluginPublish {
gracePluginPublish {
displayName = "Grace Publish Gradle Plugin"
description = 'A plugin to setup publishing to Grace central repo'
id = 'org.graceframework.internal.grace-plugin-publish'
implementationClass = 'org.grails.gradle.plugin.publishing.internal.GrailsCentralPublishGradlePlugin'
}
grailsProfilePublish {
graceProfilePublish {
displayName = "Grace Profile Publish Plugin"
description = 'A plugin for publishing profiles'
id = 'org.graceframework.internal.grace-profile-publish'
Expand Down

0 comments on commit f96a71f

Please sign in to comment.