This repository was archived by the owner on Oct 22, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathbuild.gradle
More file actions
80 lines (68 loc) · 2.83 KB
/
build.gradle
File metadata and controls
80 lines (68 loc) · 2.83 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
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
68
69
70
71
72
73
74
75
76
77
78
79
80
plugins {
id 'org.asciidoctor.convert' version '1.5.9.2'
id 'org.springframework.boot' version '2.1.6.RELEASE'
id 'java'
id 'com.ewerk.gradle.plugins.querydsl' version '1.0.10'
}
apply plugin: 'io.spring.dependency-management'
//task testElasticsearchRunner(type: Exec) {
// workingDir '.'
// commandLine './test-elasticsearch/run_test_elasticsearch.sh'
//}
//test {
// useJUnitPlatform()
// outputs.dir snippetsDir
// dependsOn 'testElasticsearchRunner'
// finalizedBy 'testElasticsearchKiller'
//}
//task testElasticsearchKiller(type: Exec) {
// workingDir '.'
// commandLine './test-elasticsearch/kill_test_elasticsearch.sh'
// dependsOn 'test'
//}
repositories {
mavenCentral()
maven { url "https://plugins.gradle.org/m2" }
}
subprojects {
apply plugin: 'java'
apply plugin: 'org.springframework.boot'
apply plugin: 'io.spring.dependency-management'
apply plugin: 'org.asciidoctor.convert'
group = 'com.woowacourse'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '1.8'
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-webflux'
implementation 'com.google.code.gson:gson:2.8.5'
implementation 'org.apache.httpcomponents:httpclient:4.5.10'
implementation 'io.jsonwebtoken:jjwt:0.9.1'
implementation 'mysql:mysql-connector-java'
implementation 'com.querydsl:querydsl-jpa'
implementation 'com.querydsl:querydsl-apt'
implementation 'org.apache.commons:commons-lang3:3.10'
testImplementation('org.springframework.boot:spring-boot-starter-test') {
exclude group: 'junit'
}
testImplementation 'com.h2database:h2'
testImplementation 'org.junit.jupiter:junit-jupiter-api'
testImplementation 'io.rest-assured:rest-assured:4.1.1'
testImplementation 'io.rest-assured:json-path:4.1.1'
testImplementation 'io.rest-assured:xml-path:4.1.1'
testImplementation 'io.rest-assured:json-schema-validator:4.1.1'
testImplementation 'io.rest-assured:spring-mock-mvc:4.1.1'
testImplementation 'org.powermock:powermock-module-junit4:2.0.4'
testImplementation 'org.powermock:powermock-api-mockito2:2.0.4'
testImplementation 'org.springframework.restdocs:spring-restdocs-restassured'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.3.2'
testImplementation 'org.junit.jupiter:junit-jupiter-engine'
asciidoctor 'org.springframework.restdocs:spring-restdocs-asciidoctor'
compileOnly 'org.projectlombok:lombok:1.18.8'
annotationProcessor 'org.projectlombok:lombok:1.18.8'
}
}