Skip to content

Commit 43b9712

Browse files
committed
Add publishing config
1 parent f82ccee commit 43b9712

File tree

1 file changed

+15
-7
lines changed

1 file changed

+15
-7
lines changed

build.gradle

Lines changed: 15 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,10 @@ buildscript {
1010
version project.projectVersion
1111
group "org.grails.plugins"
1212

13-
apply plugin: 'maven-publish'
14-
apply plugin: 'eclipse'
15-
apply plugin: 'idea'
16-
apply plugin: "io.spring.dependency-management"
17-
apply plugin:"org.grails.grails-plugin"
18-
apply plugin:"org.grails.grails-gsp"
13+
apply plugin: 'org.grails.grails-plugin'
14+
apply plugin: 'org.grails.grails-gsp'
1915
apply plugin: "org.grails.grails-doc"
16+
apply plugin: "org.grails.internal.grails-plugin-publish"
2017

2118
sourceCompatibility = 1.11
2219
targetCompatibility = 1.11
@@ -67,4 +64,15 @@ tasks.withType(GroovyCompile) {
6764
}
6865
}
6966
// enable if you wish to package this plugin as a standalone application
70-
bootJar.enabled = false
67+
bootJar.enabled = false
68+
69+
grailsPublish {
70+
userOrg = "grails"
71+
githubSlug = 'grails3-plugins/ajax-tags'
72+
license {
73+
name = 'Apache-2.0'
74+
}
75+
title = "Grails Ajax Tags Plugin"
76+
desc = "The ajax-tags plugin provides AJAX related GSP tags."
77+
developers = [osscontributor: "Jeff Brown"]
78+
}

0 commit comments

Comments
 (0)