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

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

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

File size: 1.2 KB
RevLine 
[766]1grails.project.class.dir = "target/classes"
2grails.project.test.class.dir = "target/test-classes"
[907]3grails.project.test.reports.dir = "target/test-reports"
[766]4//grails.project.war.file = "target/${appName}-${appVersion}.war"
5grails.project.dependency.resolution = {
6    // inherit Grails' default dependencies
[907]7    inherits("global") {
[766]8        // uncomment to disable ehcache
9        // excludes 'ehcache'
10    }
11    log "warn" // log level of Ivy resolver, either 'error', 'warn', 'info', 'debug' or 'verbose'
[907]12    repositories {
[766]13        grailsPlugins()
14        grailsHome()
[907]15        grailsCentral()
[766]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    }
[909]26    plugins {
27        runtime ':class-diagram:0.5.2'
28    }
[766]29    dependencies {
30        // specify dependencies here under either 'build', 'compile', 'runtime', 'test' or 'provided' scopes eg.
31
[907]32        // runtime 'mysql:mysql-connector-java:5.1.13'
[766]33    }
34}
Note: See TracBrowser for help on using the repository browser.