@@ -67,26 +67,36 @@ dependencies {
67
67
compile " org.grails:grails-core"
68
68
compile " org.springframework.boot:spring-boot-starter-actuator"
69
69
compile " org.springframework.boot:spring-boot-starter-tomcat"
70
- compile " org.grails:grails-dependencies"
71
- compile ' org.grails:grails-logging'
72
70
compile " org.grails:grails-web-boot"
71
+ compile " org.grails:grails-logging"
72
+ compile " org.grails:grails-plugin-rest"
73
+ compile " org.grails:grails-plugin-databinding"
74
+ compile " org.grails:grails-plugin-i18n"
75
+ compile " org.grails:grails-plugin-services"
76
+ compile " org.grails:grails-plugin-url-mappings"
77
+ compile " org.grails:grails-plugin-interceptors"
73
78
compile " org.grails.plugins:cache"
79
+ compile " org.grails.plugins:async"
74
80
compile " org.grails.plugins:scaffolding"
81
+ compile " org.grails.plugins:events"
75
82
compile " org.grails.plugins:hibernate5"
76
- compile " org.hibernate:hibernate-core:5.1.3.Final"
77
- compile " org.hibernate:hibernate-ehcache:5.1.3.Final"
83
+ compile " org.hibernate:hibernate-core:5.1.16.Final"
84
+ compile " org.hibernate:hibernate-ehcache:5.1.16.Final"
85
+ compile " org.grails.plugins:gsp"
78
86
console " org.grails:grails-console"
79
87
profile " org.grails.profiles:web"
80
- runtime " com.bertramlabs.plugins:asset-pipeline-grails:2.14.1"
88
+ runtime " org.glassfish.web:el-impl:2.1.2-b03"
89
+ runtime " com.h2database:h2"
90
+ runtime " org.apache.tomcat:tomcat-jdbc"
91
+ runtime " com.bertramlabs.plugins:asset-pipeline-grails:2.15.1"
92
+
81
93
// compile "org.grails.plugins:grails-plugin-converters" // only needed for grails 3.3
82
- testCompile " org.grails:grails-plugin-testing"
83
- testCompile " org.grails.plugins:geb"
84
- testCompile " org.grails:grails-test-mixins:3.3.0"
94
+ // testCompile "org.grails:grails-plugin-testing"
85
95
testCompile " org.grails:grails-gorm-testing-support"
96
+ testCompile " org.grails.plugins:geb"
86
97
testCompile " org.grails:grails-web-testing-support"
87
- testRuntime " org.seleniumhq.selenium:selenium-htmlunit-driver:2.47.1"
88
- testRuntime " net.sourceforge.htmlunit:htmlunit:2.18"
89
-
98
+ testCompile " org.grails:grails-test-mixins:3.3.0"
99
+
90
100
// Grails plugin dependencies
91
101
runtime " org.grails.plugins:ala-bootstrap3:3.0.1" , noCache
92
102
compile " org.grails.plugins:ala-ws-security-plugin:2.0" , noCache
@@ -113,17 +123,17 @@ dependencies {
113
123
runtime ' org.hamcrest:hamcrest-core:1.3'
114
124
runtime ' org.hamcrest:hamcrest-library:1.3'
115
125
runtime ' xalan:xalan:2.7.2'
116
- runtime ' org.apache.httpcomponents:httpcore:4.2.2'
117
- runtime ' org.apache.httpcomponents:httpclient:4.2.2'
118
- runtime ' org.apache.httpcomponents:httpcore:4.2.2'
119
- runtime ' org.apache.httpcomponents:httpclient:4.2.2'
126
+ // runtime 'org.apache.httpcomponents:httpcore:4.2.2'
127
+ // runtime 'org.apache.httpcomponents:httpclient:4.2.2'
120
128
compile ' com.jayway.jsonpath:json-path:0.5.6'
121
129
compile ' com.jayway.jsonpath:json-path-assert:0.5.6'
122
130
}
123
131
124
132
bootRun {
125
133
jvmArgs(' -Dspring.output.ansi.enabled=always' )
126
134
addResources = true
135
+ String springProfilesActive = ' spring.profiles.active'
136
+ systemProperty springProfilesActive, System . getProperty(springProfilesActive)
127
137
}
128
138
129
139
0 commit comments