Created
May 10, 2017 10:44
-
-
Save tyama/c80d4f146e056de5576404f39aa6b950 to your computer and use it in GitHub Desktop.
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
buildscript { | |
repositories { | |
mavenLocal() | |
maven { url "https://repo.grails.org/grails/core" } | |
} | |
dependencies { | |
classpath "org.grails:grails-gradle-plugin:$grailsVersion" | |
//classpath "org.grails.plugins:hibernate5:${gormVersion-".RELEASE"}" | |
//classpath "com.bertramlabs.plugins:asset-pipeline-gradle:2.14.2" | |
} | |
} | |
version "0.1" | |
group "v330m1" | |
apply plugin:"eclipse" | |
apply plugin:"idea" | |
apply plugin:"war" | |
apply plugin:"org.grails.grails-web" | |
// apply plugin:"asset-pipeline" | |
// apply plugin:"org.grails.grails-gsp" | |
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-web-boot" | |
compile "org.grails:grails-logging" | |
compile "org.grails:grails-plugin-rest" | |
compile "org.grails:grails-plugin-databinding" | |
compile "org.grails:grails-plugin-i18n" | |
compile "org.grails:grails-plugin-services" | |
compile "org.grails:grails-plugin-url-mappings" | |
compile "org.grails:grails-plugin-interceptors" | |
// compile "org.grails.plugins:cache" | |
// compile "org.grails.plugins:async" | |
// compile "org.grails.plugins:scaffolding" | |
// compile "org.grails.plugins:events" | |
// compile "org.grails.plugins:hibernate5" | |
// compile "org.hibernate:hibernate-core:5.1.5.Final" | |
// compile "org.grails.plugins:gsp" | |
console "org.grails:grails-console" | |
profile "org.grails.profiles:web" | |
// runtime "com.h2database:h2" | |
// runtime "org.apache.tomcat:tomcat-jdbc" | |
// compile 'org.grails.plugins:mongodb:6.1.2' | |
// compile "org.mongodb:mongodb-driver:3.4.2" | |
// runtime "com.bertramlabs.plugins:asset-pipeline-grails:2.14.2" | |
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 | |
// } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment