Skip to content

Commit

Permalink
Merge pull request #75 from kookmin-sw/backend/develop/v3
Browse files Browse the repository at this point in the history
✨ adoc파일 및 /build/이하 디렉토리 추가
  • Loading branch information
J-Yong99 authored Apr 11, 2024
2 parents 3878940 + 82379a0 commit 618588a
Show file tree
Hide file tree
Showing 2 changed files with 56 additions and 56 deletions.
56 changes: 28 additions & 28 deletions backend/moment/moment-server/auth/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -61,31 +61,31 @@ dependencyManagement {
tasks.named('test') {
useJUnitPlatform()
}
asciidoctor { // Gradle이 asciidoctor Task를 수행하는 설정 (함수 선언)
configurations 'asciidoctorExt' // asciidoctor 확장 설정
baseDirFollowsSourceFile() // .adoc 파일을 include 하면서 사용하기 위한 설정
inputs.dir snippetsDir // 스니펫을 불러올 위치 설정
dependsOn test // Gradle의 test Task 이후 asciidoctor를 수행
}

asciidoctor.doFirst { // asciidoctor Task가 수행될 때 가장 먼저 수행
delete file('src/main/resources/static/docs')
}

task copyDocument(type: Copy) { // 생성된 html 파일을 옮긴다
dependsOn asciidoctor // Gradle의 asciidoctor Task 이후 수행
from file("${asciidoctor.outputDir}")
into file("src/main/resources/static/docs")
}

build {
dependsOn copyDocument // build 이후 html 파일 복사
}

bootJar {
dependsOn asciidoctor // asciidoctor 이후 bootJar 수행
from ("${asciidoctor.outputDir}") {
into 'static/docs'
}

}
//asciidoctor { // Gradle이 asciidoctor Task를 수행하는 설정 (함수 선언)
// configurations 'asciidoctorExt' // asciidoctor 확장 설정
// baseDirFollowsSourceFile() // .adoc 파일을 include 하면서 사용하기 위한 설정
// inputs.dir snippetsDir // 스니펫을 불러올 위치 설정
// dependsOn test // Gradle의 test Task 이후 asciidoctor를 수행
//}
//
//asciidoctor.doFirst { // asciidoctor Task가 수행될 때 가장 먼저 수행
// delete file('src/main/resources/static/docs')
//}
//
//task copyDocument(type: Copy) { // 생성된 html 파일을 옮긴다
// dependsOn asciidoctor // Gradle의 asciidoctor Task 이후 수행
// from file("${asciidoctor.outputDir}")
// into file("src/main/resources/static/docs")
//}
//
//build {
// dependsOn copyDocument // build 이후 html 파일 복사
//}
//
//bootJar {
// dependsOn asciidoctor // asciidoctor 이후 bootJar 수행
// from ("${asciidoctor.outputDir}") {
// into 'static/docs'
// }
//
//}
56 changes: 28 additions & 28 deletions backend/moment/moment-server/core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -52,31 +52,31 @@ dependencyManagement {
tasks.named('test') {
useJUnitPlatform()
}
asciidoctor { // Gradle이 asciidoctor Task를 수행하는 설정 (함수 선언)
configurations 'asciidoctorExt' // asciidoctor 확장 설정
baseDirFollowsSourceFile() // .adoc 파일을 include 하면서 사용하기 위한 설정
inputs.dir snippetsDir // 스니펫을 불러올 위치 설정
dependsOn test // Gradle의 test Task 이후 asciidoctor를 수행
}

asciidoctor.doFirst { // asciidoctor Task가 수행될 때 가장 먼저 수행
delete file('src/main/resources/static/docs')
}

task copyDocument(type: Copy) { // 생성된 html 파일을 옮긴다
dependsOn asciidoctor // Gradle의 asciidoctor Task 이후 수행
from file("${asciidoctor.outputDir}")
into file("src/main/resources/static/docs")
}

build {
dependsOn copyDocument // build 이후 html 파일 복사
}

bootJar {
dependsOn asciidoctor // asciidoctor 이후 bootJar 수행
from ("${asciidoctor.outputDir}") {
into 'static/docs'
}

}
//asciidoctor { // Gradle이 asciidoctor Task를 수행하는 설정 (함수 선언)
// configurations 'asciidoctorExt' // asciidoctor 확장 설정
// baseDirFollowsSourceFile() // .adoc 파일을 include 하면서 사용하기 위한 설정
// inputs.dir snippetsDir // 스니펫을 불러올 위치 설정
// dependsOn test // Gradle의 test Task 이후 asciidoctor를 수행
//}
//
//asciidoctor.doFirst { // asciidoctor Task가 수행될 때 가장 먼저 수행
// delete file('src/main/resources/static/docs')
//}
//
//task copyDocument(type: Copy) { // 생성된 html 파일을 옮긴다
// dependsOn asciidoctor // Gradle의 asciidoctor Task 이후 수행
// from file("${asciidoctor.outputDir}")
// into file("src/main/resources/static/docs")
//}
//
//build {
// dependsOn copyDocument // build 이후 html 파일 복사
//}
//
//bootJar {
// dependsOn asciidoctor // asciidoctor 이후 bootJar 수행
// from ("${asciidoctor.outputDir}") {
// into 'static/docs'
// }
//
//}

0 comments on commit 618588a

Please sign in to comment.