-
Notifications
You must be signed in to change notification settings - Fork 28
/
build.gradle
44 lines (37 loc) · 1.12 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
43
44
buildscript {
repositories {
mavenCentral()
gradlePluginPortal()
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
group "org.grails.plugins"
apply plugin: "groovy"
project.compileJava.options.release = 17
if(project.name.endsWith('spring-security-ldap')) {
apply plugin: "org.grails.grails-publish"
grailsPublish {
githubSlug = 'grails-plugins/grails-spring-security-ldap'
license {
name = 'Apache-2.0'
}
title = 'Grails Spring Security LDAP Plugin'
desc = 'Adds Spring Security LDAP support to a Grails application.'
developers = [burtbeckwith: 'Burt Beckwith']
}
}
}
apply from: rootProject.file("gradle/docs.gradle")