-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathbuild.gradle
58 lines (52 loc) · 1.99 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
buildscript {
repositories {
mavenLocal()
maven { url "https://repo.grails.org/grails/core" }
}
dependencies {
classpath "org.grails:grails-gradle-plugin:$grailsVersion"
}
}
version "3.0.1"
group "org.grails.plugins"
apply plugin: 'eclipse'
apply plugin: 'idea'
apply plugin: "org.grails.grails-plugin"
apply plugin: "org.grails.grails-plugin-publish"
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
mavenLocal()
mavenCentral()
maven { url "https://repo.grails.org/grails/core" }
}
dependencies {
compile 'org.springframework.boot:spring-boot-starter-logging'
compile "org.springframework.boot:spring-boot-autoconfigure"
compile "org.grails:grails-core"
console "org.grails:grails-console"
profile "org.grails.profiles:plugin"
provided "org.grails:grails-plugin-services"
provided "org.grails:grails-plugin-domain-class"
testCompile "cglib:cglib-nodep:3.2.5"
testCompile "org.grails:grails-gorm-testing-support"
testCompile "org.grails:grails-plugin-testing"
testCompile "org.grails:grails-web-testing-support"
testCompile 'net.bytebuddy:byte-buddy-dep:1.8.12'
}
bootRun {
jvmArgs('-Dspring.output.ansi.enabled=always')
addResources = true
}
grailsPublish {
userOrg = 'cscpublicgrails' // Optional
repo = 'plugins' // Optional, default to 'plugins'
githubSlug = 'rmorrise/grails-cascade-validation'
license {
name = 'Apache-2.0'
}
title = "grails-cascade-validation"
desc = """This plugin establishes a 'cascade' constraint property for validateable objects. If "cascade:true" is set on a nested object, the nested object's validate() method will be invoked and the results will be reported as part of the parent object's validation."""
developers = [rmorrise:"Russell Morrisey", sbglasius: "Søren Berg Glasius", asoftwareguy: "Eric Kelm", burtbeckwith: "Burt Beckwith",
ctoestreich: "Christian Oestreich", virtualdogbert: "Virtualdogbert"]
}