-
Notifications
You must be signed in to change notification settings - Fork 102
/
build.gradle
executable file
·72 lines (60 loc) · 1.81 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
68
69
70
71
72
buildscript {
ext {
springBootVersion = '3.0.0'
}
repositories {
mavenCentral()
maven { url "https://plugins.gradle.org/m2/" }
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
classpath("com.epages:restdocs-api-spec-gradle-plugin:0.19.2")
}
}
apply plugin: 'java'
apply plugin: 'org.springframework.boot'
apply plugin: 'io.spring.dependency-management'
apply plugin: 'com.epages.restdocs-api-spec'
sourceCompatibility = 17
targetCompatibility = 17
repositories {
mavenCentral()
}
ext {
snippetsDir = file('build/generated-snippets')
}
dependencies {
implementation('org.springframework.boot:spring-boot-starter-data-jpa')
implementation('org.springframework.boot:spring-boot-starter-data-rest')
implementation('org.springframework.boot:spring-boot-starter-validation')
runtimeOnly('com.h2database:h2')
testImplementation('org.junit.jupiter:junit-jupiter-engine')
testImplementation('org.springframework.boot:spring-boot-starter-test')
testImplementation('org.springframework.restdocs:spring-restdocs-mockmvc')
testImplementation project(':restdocs-api-spec-mockmvc') // enable for depending on the submodule directly
testImplementation('com.google.guava:guava:33.3.1-jre')
}
configurations.all {
resolutionStrategy.cacheChangingModulesFor 0, 'seconds'
}
openapi {
host = 'localhost:8080'
basePath = '/api'
title = 'My API'
description = 'An ecommerce sample demonstrating restdocs-api-spec'
version = '0.1.0'
format = 'yaml'
}
openapi3 {
server = 'https://localhost:8080'
title = 'My API'
description = 'An ecommerce sample demonstrating restdocs-api-spec'
version = '0.1.0'
format = 'yaml'
tagDescriptionsPropertiesFile = "src/test/resources/tags.yaml"
}
postman {
title = 'My API'
version = '0.1.0'
baseUrl = 'https://localhost:8080'
}