@@ -6,7 +6,7 @@ buildscript {
6
6
dependencies {
7
7
classpath " org.grails:grails-gradle-plugin:$grailsVersion "
8
8
classpath " com.bertramlabs.plugins:asset-pipeline-gradle:$assetPipelineVersion "
9
- classpath " org.grails.plugins:hibernate5:7.0 .0"
9
+ classpath " org.grails.plugins:hibernate5:7.1 .0"
10
10
classpath " gradle.plugin.com.github.erdi.webdriver-binaries:webdriver-binaries-gradle-plugin:2.1"
11
11
12
12
}
@@ -69,31 +69,31 @@ dependencies {
69
69
compile " org.grails.plugins:scaffolding"
70
70
compile " org.grails.plugins:events"
71
71
compile " org.grails.plugins:hibernate5"
72
- compile " org.hibernate:hibernate-core:5.4.0 .Final"
72
+ compile " org.hibernate:hibernate-core:5.5.7 .Final"
73
73
compile " org.grails.plugins:gsp"
74
74
// tag::dependencySSR[]
75
75
compile ' org.grails.plugins:spring-security-rest:3.0.0.RC1'
76
76
compile ' org.grails.plugins:spring-security-core:4.0.0.RC2'
77
77
// end::dependencySSR[]
78
78
console " org.grails:grails-console"
79
79
profile " org.grails.profiles:web"
80
- runtime " org.glassfish.web:el-impl:2.1.2-b03"
81
- runtime " com.h2database:h2"
82
- runtime " org.apache.tomcat:tomcat-jdbc"
83
- runtime " javax.xml.bind:jaxb-api:2.3.0"
84
- runtime " com.bertramlabs.plugins:asset-pipeline-grails:$assetPipelineVersion "
85
- testCompile " org.grails:grails-gorm-testing-support"
86
- testCompile " org.mockito:mockito-core"
87
- testCompile " org.grails:grails-web-testing-support"
80
+ runtimeOnly " org.glassfish.web:el-impl:2.1.2-b03"
81
+ runtimeOnly " com.h2database:h2"
82
+ runtimeOnly " org.apache.tomcat:tomcat-jdbc"
83
+ runtimeOnly " javax.xml.bind:jaxb-api:2.3.0"
84
+ runtimeOnly " com.bertramlabs.plugins:asset-pipeline-grails:$assetPipelineVersion "
85
+ testImplementation " org.grails:grails-gorm-testing-support"
86
+ testImplementation " org.mockito:mockito-core"
87
+ testImplementation " org.grails:grails-web-testing-support"
88
88
// tag::micronaut[]
89
- testCompile " io.micronaut:micronaut-http-client"
89
+ testImplementation " io.micronaut:micronaut-http-client"
90
90
// end::micronaut[]
91
- testCompile " org.grails.plugins:geb"
92
- testRuntime " org.seleniumhq.selenium:selenium-chrome-driver:$seleniumVersion "
93
- testRuntime " org.seleniumhq.selenium:selenium-firefox-driver:$seleniumVersion "
94
- testCompile " org.seleniumhq.selenium:selenium-remote-driver:$seleniumVersion "
95
- testCompile " org.seleniumhq.selenium:selenium-api:$seleniumVersion "
96
- testCompile " org.seleniumhq.selenium:selenium-support:$seleniumVersion "
91
+ testImplementation " org.grails.plugins:geb"
92
+ testRuntimeOnly " org.seleniumhq.selenium:selenium-chrome-driver:$seleniumVersion "
93
+ testRuntimeOnly " org.seleniumhq.selenium:selenium-firefox-driver:$seleniumVersion "
94
+ testImplementation " org.seleniumhq.selenium:selenium-remote-driver:$seleniumVersion "
95
+ testImplementation " org.seleniumhq.selenium:selenium-api:$seleniumVersion "
96
+ testImplementation " org.seleniumhq.selenium:selenium-support:$seleniumVersion "
97
97
}
98
98
99
99
bootRun {
@@ -125,6 +125,11 @@ tasks.withType(Test) {
125
125
}
126
126
127
127
webdriverBinaries {
128
- chromedriver ' 77.0.3865.40'
128
+ chromedriver {
129
+ version = ' 77.0.3865.40'
130
+ architecture = ' X86'
131
+ }
129
132
geckodriver ' 0.24.0'
130
133
}
134
+
135
+ tasks. withType(Test ) { useJUnitPlatform() }
0 commit comments