Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 자바
- backtracking
- 모던자바
- 알고리즘
- 코틀린
- programmers
- Brute-force
- Java8
- back-end
- TDD
- 백준
- BFS
- baekjoon
- lambda
- 운영체제
- DFS
- 네트워크
- OS
- 프로젝트
- 프로그래머스
- 백트래킹
- algorithm
- java
- 자료구조
- 그래프
- LEVEL2
- kotlin
- 스프링
- Spring
- DP
Archives
- Today
- Total
목록DSL (1)
요깨비's LAB
[YOS] Kotlin DSL에서 Rest Docs 설정
기존 그래들 설정과 문법 모양이 좀 달라서 스스로 적용하고 기록합니다. build.gradle.kts 부분 dependencies { ... testImplementation("org.springframework.restdocs:spring-restdocs-webtestclient") ... } tasks.withType { useJUnitPlatform() } tasks.test { outputs.dir(snippetsDir) } tasks.asciidoctor { inputs.dir(snippetsDir) dependsOn(tasks.test) } tasks.register("copyHTML", Copy::class) { dependsOn(tasks.findByName("asciidoctor")) f..
웹 개발/스프링부트 프로젝트 MSA(YOS)
2021. 5. 11. 16:03