@@ -24,6 +24,7 @@ apply plugin:"org.grails.grails-gsp"
24
24
25
25
repositories {
26
26
mavenLocal()
27
+ mavenCentral()
27
28
maven { url " https://repo.grails.org/grails/core" }
28
29
}
29
30
@@ -46,14 +47,14 @@ dependencies {
46
47
compile " org.grails.plugins:scaffolding"
47
48
compile " org.grails.plugins:events"
48
49
compile " org.grails.plugins:hibernate5"
49
- compile " org.hibernate:hibernate-core:5.1.5.Final "
50
+ compile " org.hibernate:hibernate-core:$h ibernateCoreVersion "
50
51
compile " org.grails.plugins:gsp"
51
52
console " org.grails:grails-console"
52
53
profile " org.grails.profiles:web"
53
54
runtime " org.glassfish.web:el-impl:2.1.2-b03"
54
55
runtime " com.h2database:h2"
55
56
runtime " org.apache.tomcat:tomcat-jdbc"
56
- testCompile " org.grails:grails-test-mixins:3.3.0"
57
+ // testCompile "org.grails:grails-test-mixins:3.3.0"
57
58
runtime " com.bertramlabs.plugins:asset-pipeline-grails:$assetPipelineVersion "
58
59
testCompile " org.grails:grails-gorm-testing-support"
59
60
testCompile " org.grails:grails-web-testing-support"
@@ -64,16 +65,27 @@ dependencies {
64
65
testCompile " org.seleniumhq.selenium:selenium-chrome-driver:3.6.0"
65
66
testCompile " org.seleniumhq.selenium:selenium-remote-driver:3.6.0"
66
67
testCompile " org.seleniumhq.selenium:selenium-api:3.6.0"
68
+ // https://mvnrepository.com/artifact/org.seleniumhq.selenium/selenium-support
69
+ testCompile group : ' org.seleniumhq.selenium' , name : ' selenium-support' , version : ' 3.6.0'
70
+
67
71
testCompile(" io.github.bonigarcia:webdrivermanager:2.2.4" ) {
68
72
exclude group : ' org.seleniumhq.selenium'
69
73
}
70
74
71
75
compile ' dumbster:dumbster:1.6' , { transitive = false }
72
76
compile " org.grails.plugins:mail:$mailVesion "
73
77
74
- compile(" org.grails.plugins:spring-security-acl:$springSecurityAclVersion " ) {
78
+
79
+ compile(" org.grails.plugins:spring-security-acl:4.0.0.BUILD-SNAPSHOT" ) {
80
+ exclude group : ' org.grails.plugins' , module : ' spring-security-core'
81
+ }
82
+
83
+ /*
84
+ compile("org.grails.plugins:spring-security-acl:3.1.2") {
75
85
exclude group: 'org.grails.plugins', module: 'spring-security-core'
76
86
}
87
+ */
88
+
77
89
compile project(" :spring-security-ui" )
78
90
}
79
91
@@ -84,7 +96,7 @@ webdriverBinaries {
84
96
85
97
bootRun {
86
98
jvmArgs(' -Dspring.output.ansi.enabled=always' )
87
- addResources = true
99
+ sourceResources sourceSets . main
88
100
}
89
101
90
102
assets {
0 commit comments