| 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:$assetPipelineVersion" |
| classpath "org.grails.plugins:hibernate5:${gormVersion-".RELEASE"}" |
| } |
| } |
| |
| version "0.1" |
| group "s2.quickstart.role.group" |
| |
| apply plugin:"eclipse" |
| apply plugin:"idea" |
| apply plugin:"war" |
| apply plugin:"org.grails.grails-web" |
| apply plugin:"org.grails.grails-gsp" |
| apply plugin: "com.bertramlabs.asset-pipeline" |
| |
| repositories { |
| mavenLocal() |
| maven { url "https://repo.grails.org/grails/core" } |
| } |
| |
| 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:hibernate5" |
| compile "org.hibernate:hibernate-core:$hibernateCoreVersion" |
| compile "org.hibernate:hibernate-ehcache:$hibernatEhcacheVersion" |
| console "org.grails:grails-console" |
| profile "org.grails.profiles:web" |
| runtime "com.bertramlabs.plugins:asset-pipeline-grails:$assetPipelineVersion" |
| runtime "com.h2database:h2" |
| 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" |
| compile 'org.grails.plugins:spring-security-core:3.1.2' |
| } |
| |
| bootRun { |
| jvmArgs('-Dspring.output.ansi.enabled=always') |
| sourceResources sourceSets.main |
| } |
| |
| |
| assets { |
| minifyJs = true |
| minifyCss = true |
| } |