import org.apache.ivy.plugins.latest.LatestTimeStrategy import org.apache.ivy.plugins.resolver.FileSystemResolver grails.project.class.dir = "target/classes" grails.project.test.class.dir = "target/test-classes" grails.project.test.reports.dir = "target/test-reports" //grails.project.war.file = "target/${appName}-${appVersion}.war" grails.project.dependency.resolution = { // inherit Grails' default dependencies inherits( "global" ) { // uncomment to disable ehcache // excludes 'ehcache' } log "warn" // log level of Ivy resolver, either 'error', 'warn', 'info', 'debug' or 'verbose' repositories { grailsPlugins() grailsHome() grailsCentral() // def localPlugins = new FileSystemResolver(name: 'my-local-repo') // localPlugins.with { // addArtifactPattern("${System.env['OMAR_HOME']}/plugins/grails-[artifact]-[revision].[ext]") // settings = ivySettings // latestStrategy = new LatestTimeStrategy() // changingPattern = ".*SNAPSHOT" // setCheckmodified(true) // } // resolver(localPlugins) // uncomment the below to enable remote dependency resolution // from public Maven repositories mavenLocal() mavenCentral() //mavenRepo "http://snapshots.repository.codehaus.org" //mavenRepo "http://repository.codehaus.org" //mavenRepo "http://download.java.net/maven/2/" //mavenRepo "http://repository.jboss.com/maven2/" } dependencies { // specify dependencies here under either 'build', 'compile', 'runtime', 'test' or 'provided' scopes eg. // runtime 'mysql:mysql-connector-java:5.1.5' compile( "joda-time:joda-time-hibernate:1.3" ) { excludes "joda-time", "hibernate" } } plugins { compile ":joda-time:1.4" } } grails.plugin.location.geoscript = "../../plugins/geoscript" grails.plugin.location.postgis = "../../plugins/postgis" grails.plugin.location.omarOms = "../../plugins/omar-oms" grails.plugin.location.omarSecuritySpring = "../../plugins/omar-security-spring"