1 | /** |
---|
2 | * Project build configuration |
---|
3 | * @Author Jeroen Wesbeek |
---|
4 | * @Since 20091027 |
---|
5 | * @Description |
---|
6 | * |
---|
7 | * Specific build configuration for the GSCF application |
---|
8 | * |
---|
9 | * Revision information: |
---|
10 | * $Rev: 1430 $ |
---|
11 | * $Author: work@osx.eu $ |
---|
12 | * $Date: 2011-01-21 20:05:36 +0000 (vr, 21 jan 2011) $ |
---|
13 | */ |
---|
14 | |
---|
15 | //grails.plugin.repos.discovery.intient = "http://intient.com/downloads/grails/" |
---|
16 | grails.project.dependency.resolution = { |
---|
17 | // inherit Grails' default dependencies |
---|
18 | inherits("global") { |
---|
19 | // uncomment to disable ehcache |
---|
20 | // excludes 'ehcache' |
---|
21 | } |
---|
22 | log "warn" // log level of Ivy resolver, either 'error', 'warn', 'info', 'debug' or 'verbose' |
---|
23 | repositories { |
---|
24 | grailsPlugins() |
---|
25 | grailsHome() |
---|
26 | // mavenRepo "http://nmcdsp.org:8080/nexus-webapp-1.7.2/content/repositories/releases/" |
---|
27 | mavenRepo "http://nexus.nmcdsp.org/content/repositories/releases" |
---|
28 | grailsCentral() |
---|
29 | |
---|
30 | // uncomment the below to enable remote dependency resolution |
---|
31 | // from public Maven repositories |
---|
32 | //mavenLocal() |
---|
33 | //mavenCentral() |
---|
34 | //mavenRepo "http://snapshots.repository.codehaus.org" |
---|
35 | //mavenRepo "http://repository.codehaus.org" |
---|
36 | //mavenRepo "http://download.java.net/maven/2/" |
---|
37 | //mavenRepo "http://repository.jboss.com/maven2/" |
---|
38 | } |
---|
39 | dependencies { |
---|
40 | // specify dependencies here under either 'build', 'compile', 'runtime', 'test' or 'provided' scopes eg. |
---|
41 | |
---|
42 | // runtime 'mysql:mysql-connector-java:5.1.5' |
---|
43 | } |
---|
44 | } |
---|
45 | |
---|
46 | //grails.plugin.location.'grom' = '../grom' |
---|
47 | //grails.plugin.location.'ajaxflow' = '../ajaxflow' |
---|
48 | //grails.plugin.location.'gdt' = '../gdt' |
---|
49 | //grails.plugin.location.'jumpbar' = '../jumpbar' |
---|