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

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

Install class-diagram plugin in branches/util-apps/DomainUtil.

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    plugins {
27        runtime ':class-diagram:0.5.2'
28    }
29    dependencies {
30        // specify dependencies here under either 'build', 'compile', 'runtime', 'test' or 'provided' scopes eg.
31
32        // runtime 'mysql:mysql-connector-java:5.1.13'
33    }
34}
Note: See TracBrowser for help on using the repository browser.