source: branches/util-apps/DomainUtil/grails-app/conf/BuildConfig.groovy @ 907

Last change on this file since 907 was 907, checked in by gav, 13 years ago

Upgrade branches/util-apps/DomainUtil to Grails-1.3.7.

File size: 1.2 KB
Line 
1grails.project.class.dir = "target/classes"
2grails.project.test.class.dir = "target/test-classes"
3grails.project.test.reports.dir = "target/test-reports"
4//grails.project.war.file = "target/${appName}-${appVersion}.war"
5grails.project.dependency.resolution = {
6    // inherit Grails' default dependencies
7    inherits("global") {
8        // uncomment to disable ehcache
9        // excludes 'ehcache'
10    }
11    log "warn" // log level of Ivy resolver, either 'error', 'warn', 'info', 'debug' or 'verbose'
12    repositories {
13        grailsPlugins()
14        grailsHome()
15        grailsCentral()
16
17        // uncomment the below to enable remote dependency resolution
18        // from public Maven repositories
19        //mavenLocal()
20        //mavenCentral()
21        //mavenRepo "http://snapshots.repository.codehaus.org"
22        //mavenRepo "http://repository.codehaus.org"
23        //mavenRepo "http://download.java.net/maven/2/"
24        //mavenRepo "http://repository.jboss.com/maven2/"
25    }
26    dependencies {
27        // specify dependencies here under either 'build', 'compile', 'runtime', 'test' or 'provided' scopes eg.
28
29        // runtime 'mysql:mysql-connector-java:5.1.13'
30    }
31}
Note: See TracBrowser for help on using the repository browser.