-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.gradle
42 lines (34 loc) · 1.2 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
buildscript {
repositories {
maven { url "https://plugins.gradle.org/m2/" }
maven { url "https://repo.grails.org/grails/core" }
}
dependencies {
classpath "org.grails:grails-gradle-plugin:$grailsGradlePluginVersion"
}
}
allprojects {
repositories {
mavenCentral()
maven { url "https://repo.grails.org/grails/core" }
}
}
version project.projectVersion
group "org.grails.plugins"
subprojects { project ->
version project.projectVersion
apply plugin: "groovy"
project.compileJava.options.release = 17
if(project.name.endsWith('grails-web-console')) {
apply plugin: "org.grails.grails-publish"
grailsPublish {
githubSlug = 'grails-plugins/grails-web-console'
license {
name = 'Apache-2.0'
}
title = "Grails Web Console Plugin"
desc = "A web-based Groovy console for interactive runtime application management and debugging"
developers = [ziegfried: 'Siegfried Puchbauer', mingfai: 'Mingfai Ma', burtbeckwith: 'Burt Beckwith', sheehan: 'Matt Sheehan', mjhugo: 'Mike Hugo', kdybicz: 'Kamil Dybicz', vsachinv: 'vsachinv' ]
}
}
}