-
Notifications
You must be signed in to change notification settings - Fork 33
/
build.gradle
42 lines (33 loc) · 1.35 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 {
jcenter()
}
dependencies {
classpath "org.grails:grails-gradle-plugin:2.1.2"
}
}
apply plugin: 'grails'
grails {
grailsVersion = '2.4.3' // Specifies the Grails version to use
groovyVersion = '2.3.6' // Specify the Groovy version to use (should match the version that ships with the above Grails version)
springLoadedVersion = '1.2.0.RELEASE' // Specify the Spring Loaded version to use
}
repositories {
jcenter()
grails.central() //Adds the Grails Central Repository for resolving Grails plugins (replaces grailsPlugins(), grailsCentral() from BuildConfig.groovy)
}
dependencies {
bootstrap 'org.grails.plugins:tomcat:7.0.55'
compile 'org.grails.plugins:scaffolding:2.1.2'
compile 'org.grails.plugins:cache:1.1.7'
compile 'org.grails.plugins:asset-pipeline:1.9.6'
compile 'org.grails.plugins:rest:0.8'
compile 'org.grails.plugins:mongodb:3.0.2'
compile 'org.grails.plugins:quartz:1.0.2'
compile 'org.grails.plugins:elasticsearch:0.0.3.6'
runtime 'org.grails.plugins:hibernate4:4.3.5.5' //or 'org.grails.plugins:hibernate4:4.3.1.1'
runtime 'org.grails.plugins:database-migration:1.4.0'
runtime 'org.grails.plugins:jquery:1.11.1'
test 'org.grails:grails-datastore-test-support:1.0-grails-2.4'
//runtime 'org.grails.plugins:resources:1.2.2'
}