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

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

Add branches/util-apps/DomainUtil application.

File size: 1.1 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
16        // uncomment the below to enable remote dependency resolution
17        // from public Maven repositories
18        //mavenLocal()
19        //mavenCentral()
20        //mavenRepo "http://snapshots.repository.codehaus.org"
21        //mavenRepo "http://repository.codehaus.org"
22        //mavenRepo "http://download.java.net/maven/2/"
23        //mavenRepo "http://repository.jboss.com/maven2/"
24    }
25    dependencies {
26        // specify dependencies here under either 'build', 'compile', 'runtime', 'test' or 'provided' scopes eg.
27
28        // runtime 'mysql:mysql-connector-java:5.1.5'
29    }
30
31}
Note: See TracBrowser for help on using the repository browser.