-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
36 lines (29 loc) · 991 Bytes
/
build.gradle
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
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:1.1.9.RELEASE")
}
}
["spring-boot", "java"].each {
apply plugin: it
}
repositories {
mavenCentral()
}
dependencies {
compile 'org.springframework.boot:spring-boot-starter-web:1.1.9.RELEASE',
'org.axonframework:axon-core:2.3.2',
'org.springframework.data:spring-data-elasticsearch:1.1.1.RELEASE'
testCompile 'junit:junit-dep:4.11',
'org.easytesting:fest-assert-core:2.0M10',
'org.mockito:mockito-core:1.9.5',
'org.springframework:spring-test:4.1.2.RELEASE',
'org.axonframework:axon-test:2.3.2',
'com.jayway.restassured:rest-assured:2.4.0'
}
applicationDefaultJvmArgs = ["-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=5005"]
task functionalTests(type: Test) {
include '**/FunctionalTest.*'
}