-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathbuild.gradle
67 lines (54 loc) · 2.06 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
plugins {
id 'org.springframework.boot' version '2.3.1.RELEASE'
id 'io.spring.dependency-management' version '1.0.9.RELEASE'
id 'org.asciidoctor.convert' version '1.5.8'
id 'java'
id 'idea'
}
apply from: 'gradle/test-architecture.gradle'
apply from: 'gradle/test-acceptance.gradle'
group 'ddd.example.todo'
version '1.0.0-SNAPSHOT'
allprojects {
repositories {
mavenCentral()
}
}
ext {
set('snippetsDir', file("build/generated-snippets"))
}
dependencies {
def dddBitsVersion = '0.0.1'
def lombokVersion = '1.18.12'
implementation "io.hschwentner.dddbits:dddbits:${dddBitsVersion}"
implementation 'org.springframework.boot:spring-boot-starter-web'
developmentOnly 'org.springframework.boot:spring-boot-devtools'
implementation "com.google.guava:guava:29.0-jre"
implementation "javax.annotation:javax.annotation-api:1.3.2"
compileOnly "org.projectlombok:lombok:${lombokVersion}"
annotationProcessor "org.projectlombok:lombok:${lombokVersion}"
// test
testCompileOnly "org.projectlombok:lombok:${lombokVersion}"
testAnnotationProcessor "org.projectlombok:lombok:${lombokVersion}"
testImplementation('org.springframework.boot:spring-boot-starter-test') {
exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
}
testImplementation 'org.springframework.restdocs:spring-restdocs-mockmvc'
// acceptanceTest
def cucumberVersion = '5.6.0'
acceptanceTestImplementation "io.cucumber:cucumber-java:${cucumberVersion}"
acceptanceTestImplementation "io.cucumber:cucumber-junit:${cucumberVersion}"
acceptanceTestImplementation "com.google.guava:guava:29.0-jre"
// architectureTest
architectureTestImplementation "io.hschwentner.dddbits:dddbits:${dddBitsVersion}"
architectureTestImplementation 'com.tngtech.archunit:archunit-junit4:0.13.1'
architectureTestImplementation group: 'org.slf4j', name: 'slf4j-simple', version: '1.6.1'
}
test {
outputs.dir snippetsDir
useJUnitPlatform()
}
asciidoctor {
inputs.dir snippetsDir
dependsOn test
}