Skip to content

Instantly share code, notes, and snippets.

@graemerocher
Created March 16, 2017 13:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save graemerocher/bb927158e616d06dc48533c50a3e2ee5 to your computer and use it in GitHub Desktop.
Save graemerocher/bb927158e616d06dc48533c50a3e2ee5 to your computer and use it in GitHub Desktop.
GORM for MongoDB 6.1 RC1 with Grails 3.2.7
buildscript {
repositories {
mavenLocal()
maven { url "https://repo.grails.org/grails/core" }
}
dependencies {
classpath "org.grails:grails-gradle-plugin:$grailsVersion"
classpath "com.bertramlabs.plugins:asset-pipeline-gradle:2.11.6"
}
}
version "0.1"
group "mongo.test"
apply plugin:"eclipse"
apply plugin:"idea"
apply plugin:"war"
apply plugin:"org.grails.grails-web"
apply plugin:"org.grails.grails-gsp"
apply plugin:"asset-pipeline"
repositories {
mavenLocal()
maven { url "https://repo.grails.org/grails/core" }
}
configurations.all {
exclude module:'grails-datastore-simple'
}
dependencies {
compile "org.springframework.boot:spring-boot-starter-logging"
compile "org.springframework.boot:spring-boot-autoconfigure"
compile "org.grails:grails-core"
compile "org.springframework.boot:spring-boot-starter-actuator"
compile "org.springframework.boot:spring-boot-starter-tomcat"
compile "org.grails:grails-dependencies"
compile "org.grails:grails-web-boot"
compile "org.grails.plugins:cache"
compile "org.grails.plugins:scaffolding"
compile "org.grails.plugins:mongodb:6.1.0.RC1"
compile "org.mongodb:mongodb-driver:3.4.2"
console "org.grails:grails-console"
profile "org.grails.profiles:web"
provided "org.grails.plugins:embedded-mongodb:1.0.2"
runtime "com.bertramlabs.plugins:asset-pipeline-grails:2.11.6"
testCompile "org.grails:grails-plugin-testing"
testCompile "org.grails.plugins:geb"
testRuntime "org.seleniumhq.selenium:selenium-htmlunit-driver:2.47.1"
testRuntime "net.sourceforge.htmlunit:htmlunit:2.18"
}
bootRun {
jvmArgs('-Dspring.output.ansi.enabled=always')
addResources = true
}
assets {
minifyJs = true
minifyCss = true
}
grailsVersion=3.2.7
gormVersion=6.1.0.RC1
gradleWrapperVersion=3.4.1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment