forked from apache/grails-spring-security
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
40 lines (33 loc) · 1.63 KB
/
Copy pathbuild.gradle
File metadata and controls
40 lines (33 loc) · 1.63 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
plugins {
id 'org.apache.grails.gradle.grails-web'
id 'com.bertramlabs.asset-pipeline'
}
group = 'misc.functional.test.app'
dependencies {
implementation 'org.apache.grails:grails-core'
implementation 'org.apache.grails:grails-rest-transforms'
implementation 'org.apache.grails:grails-web-boot'
implementation 'org.apache.grails:grails-gsp'
runtimeOnly 'com.bertramlabs.plugins:asset-pipeline-grails'
runtimeOnly 'com.h2database:h2'
runtimeOnly 'com.zaxxer:HikariCP'
runtimeOnly 'org.fusesource.jansi:jansi'
runtimeOnly 'org.apache.grails:grails-i18n'
runtimeOnly 'org.apache.grails:grails-databinding'
runtimeOnly 'org.apache.grails:grails-url-mappings'
runtimeOnly 'org.apache.grails:grails-services'
runtimeOnly 'org.apache.grails:grails-data-hibernate5'
runtimeOnly 'org.springframework.boot:spring-boot-autoconfigure'
runtimeOnly 'org.springframework.boot:spring-boot-starter-logging'
runtimeOnly 'org.springframework.boot:spring-boot-starter-tomcat'
integrationTestImplementation testFixtures('org.apache.grails:grails-geb')
integrationTestImplementation 'org.apache.grails.bootstrap:grails-bootstrap', {
// Environment
}
integrationTestImplementation 'org.apache.grails:grails-testing-support-web'
integrationTestImplementation 'org.spockframework:spock-core'
implementation project(':ldap-plugin')
}
apply from: rootProject.layout.projectDirectory.file('gradle/java-config.gradle')
apply from: rootProject.layout.projectDirectory.file('gradle/test-config.gradle')
apply from: rootProject.layout.projectDirectory.file('gradle/examples-config.gradle')