[34] | 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: 1973 $ |
---|
| 11 | * $Author: m.s.vanvliet@lacdr.leidenuniv.nl $ |
---|
| 12 | * $Date: 2011-08-04 14:14:29 +0000 (do, 04 aug 2011) $ |
---|
| 13 | */ |
---|
| 14 | |
---|
[44] | 15 | //grails.plugin.repos.discovery.intient = "http://intient.com/downloads/grails/" |
---|
[936] | 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 | grailsCentral() |
---|
| 27 | |
---|
| 28 | // uncomment the below to enable remote dependency resolution |
---|
| 29 | // from public Maven repositories |
---|
| 30 | //mavenLocal() |
---|
[1635] | 31 | mavenCentral() |
---|
| 32 | mavenRepo 'http://repository.jboss.org/maven2/' |
---|
| 33 | mavenRepo "http://nexus.nmcdsp.org/content/repositories/releases" |
---|
[936] | 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 | // runtime 'mysql:mysql-connector-java:5.1.5' |
---|
[1635] | 42 | build 'org.codehaus.gpars:gpars:0.11' |
---|
[936] | 43 | } |
---|
| 44 | } |
---|
| 45 | |
---|
[1232] | 46 | //grails.plugin.location.'grom' = '../grom' |
---|
[1319] | 47 | //grails.plugin.location.'ajaxflow' = '../ajaxflow' |
---|
[1860] | 48 | //grails.plugin.location.'gdt' = '../gdt' |
---|
[1716] | 49 | //grails.plugin.location.'jumpbar' = '../jumpbar' |
---|
[1973] | 50 | //grails.plugin.location.'gdtimporter' = '../gdtimporter' |
---|