Skip to content

Instantly share code, notes, and snippets.

@pvardanega
Last active December 16, 2015 19:49
Show Gist options
  • Save pvardanega/5487650 to your computer and use it in GitHub Desktop.
Save pvardanega/5487650 to your computer and use it in GitHub Desktop.
Test plugin html5-mobile-scaffolding pour Grails. Fichier configuration BuildConfig.groovy
grails.servlet.version = "2.5"
grails.project.class.dir = "target/classes"
grails.project.test.class.dir = "target/test-classes"
grails.project.test.reports.dir = "target/test-reports"
grails.project.target.level = 1.6
grails.project.source.level = 1.6
grails.project.dependency.resolution = {
inherits("global") {
}
log "error"
checksums true
legacyResolve false
repositories {
inherits true
grailsPlugins()
grailsHome()
grailsCentral()
mavenLocal()
mavenCentral()
mavenRepo "http://maven.springframework.org/milestone/"
mavenRepo "https://oss.sonatype.org/content/repositories/releases/"
mavenRepo "https://oss.sonatype.org/content/repositories/snapshots/"
}
dependencies {
}
plugins {
runtime ":hibernate:$grailsVersion"
runtime ":jquery:1.8.3"
runtime ":resources:1.1.6"
build ":tomcat:$grailsVersion"
runtime ":database-migration:1.2.1"
compile ':cache:1.0.1'
compile ":events-push:1.0.M7"
compile ":html5-mobile-scaffolding:0.6"
}
}
@pvardanega
Copy link
Author

I removed comments in this file just for the readability of this gist

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment