Last active
December 16, 2015 19:50
-
-
Save pvardanega/5488245 to your computer and use it in GitHub Desktop.
Try to create a project with Grails plugin html5-mobile-scaffolding. I found compilation failure when I use the embedded events-push plugin (version 1.0.M3). Solution: adding the last version (today 1.0.M7)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment