-
Notifications
You must be signed in to change notification settings - Fork 61
/
build.gradle
39 lines (34 loc) · 1.02 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
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 {
maven { url "https://repo.grails.org/grails/core" }
mavenCentral()
// mavenLocal() // for local testing, do not commit uncommented
}
}
version project.projectVersion
group "org.grails.plugins"
subprojects { Project project ->
project.version project.projectVersion
project.group "org.grails.plugins"
if(project.name.endsWith('audit-logging')) {
apply plugin: "org.grails.grails-publish"
grailsPublish {
githubSlug = 'grails-plugins/grails-audit-logging-plugin'
license {
name = 'Apache-2.0'
}
title = "Grails Audit-Logging Plugin"
desc = "Grails Audit-Logging Plugin for Grails 7+"
developers = [robertoschwald:"Robert Oschwald", longwa:"Aaron Long", elkr:"Elmar Kretzer"]
}
}
}