[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: 1055 $ |
---|
| 11 | * $Author: t.w.abma@umcutrecht.nl $ |
---|
| 12 | * $Date: 2010-11-03 10:45:38 +0000 (wo, 03 nov 2010) $ |
---|
| 13 | */ |
---|
| 14 | |
---|
| 15 | /** |
---|
| 16 | * add the nimble repository |
---|
| 17 | * @see http://sites.google.com/site/nimbledoc/nimble-installation |
---|
| 18 | */ |
---|
[44] | 19 | //grails.plugin.repos.discovery.intient = "http://intient.com/downloads/grails/" |
---|
[936] | 20 | grails.project.dependency.resolution = { |
---|
| 21 | // inherit Grails' default dependencies |
---|
| 22 | inherits("global") { |
---|
| 23 | // uncomment to disable ehcache |
---|
| 24 | // excludes 'ehcache' |
---|
| 25 | } |
---|
| 26 | log "warn" // log level of Ivy resolver, either 'error', 'warn', 'info', 'debug' or 'verbose' |
---|
| 27 | repositories { |
---|
| 28 | grailsPlugins() |
---|
| 29 | grailsHome() |
---|
| 30 | // mavenRepo "http://nmcdsp.org:8080/nexus-webapp-1.7.2/content/repositories/releases/" |
---|
| 31 | mavenRepo "http://nexus.nmcdsp.org/content/repositories/releases" |
---|
| 32 | grailsCentral() |
---|
| 33 | |
---|
| 34 | // uncomment the below to enable remote dependency resolution |
---|
| 35 | // from public Maven repositories |
---|
| 36 | //mavenLocal() |
---|
| 37 | //mavenCentral() |
---|
| 38 | //mavenRepo "http://snapshots.repository.codehaus.org" |
---|
| 39 | //mavenRepo "http://repository.codehaus.org" |
---|
| 40 | //mavenRepo "http://download.java.net/maven/2/" |
---|
| 41 | //mavenRepo "http://repository.jboss.com/maven2/" |
---|
| 42 | } |
---|
| 43 | dependencies { |
---|
| 44 | // specify dependencies here under either 'build', 'compile', 'runtime', 'test' or 'provided' scopes eg. |
---|
| 45 | |
---|
| 46 | // runtime 'mysql:mysql-connector-java:5.1.5' |
---|
| 47 | } |
---|
| 48 | } |
---|
| 49 | |
---|
[938] | 50 | //grails.plugin.location.'aaaa' = '/home/tjeerd/NetBeansProjects/nmcdsp/nmcdsp-grailsPlugins/aaaa' |
---|
[1055] | 51 | //grails.plugin.location.'grom' = '../grom' |
---|