Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,4 +108,7 @@ you can also create Postman collection by running the following command:
./gradlew postman
```
---
[[click to see more sample code]](https://github.com/BGMSound/documentify/tree/main/documentify-sample)
[[click to see more sample code]](https://github.com/BGMSound/documentify/tree/main/documentify-sample)

## Documentify Development Story
If you want to check out the development story of Documentify, please refer to the [blog post](https://bgmsound.medium.com/documentify-선언형-rest-docs-dsl-제작기-0a09f651be2c).
8 changes: 4 additions & 4 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ group = extra["project.group"] as String
version = extra["project.version.id"] as String

val publicModulePathSet = setOf(
rootProject.projects.documentifyCore.identityPath.path,
rootProject.projects.documentifyPlugin.identityPath.path,
rootProject.projects.documentifyProject.documentifyCore.identityPath.path,
rootProject.projects.documentifyProject.documentifyPlugin.identityPath.path,
rootProject.projects.documentifyProject.documentifyMvc.identityPath.path,
rootProject.projects.documentifyProject.documentifyReactive.identityPath.path,
rootProject.projects.documentifyStarters.documentifyStarterMvc.identityPath.path,
Expand Down Expand Up @@ -124,7 +124,7 @@ repositories {
kover {
merge {
projects(
rootProject.projects.documentifyCore.identityPath.path,
rootProject.projects.documentifyProject.documentifyCore.identityPath.path,
rootProject.projects.documentifyProject.documentifyMvc.identityPath.path,
rootProject.projects.documentifyProject.documentifyReactive.identityPath.path,
rootProject.projects.documentifySample.mvcSample.identityPath.path,
Expand All @@ -136,4 +136,4 @@ kover {
excludes.classes.add("**.sample.**")
}
}
}
}
4 changes: 3 additions & 1 deletion documentify-project/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ subprojects {
}
dependencies {
compileOnly(rootProject.libs.spring.boot.starter.test)
api(rootProject.projects.documentifyCore)
if (project.path != rootProject.projects.documentifyProject.documentifyCore.identityPath.path) {
api(rootProject.projects.documentifyProject.documentifyCore)
}
}
}
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
dependencies {
implementation(libs.spring.boot.starter.test)
implementation(libs.restdocs.api.spec)
implementation(libs.jackson.databind)
implementation(libs.jackson.datatype.jsr310)
compileOnly(libs.spring.restdocs.mockmvc)
compileOnly(libs.spring.boot.starter.web)
compileOnly(libs.spring.boot.starter.webflux)
api(libs.jackson.databind)
api(libs.jackson.datatype.jsr310)
}
2 changes: 1 addition & 1 deletion documentify-sample/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id("io.github.bgmsound.documentify") version "1.0.0" apply false
id("io.github.bgmsound.documentify") version "1.2.4" apply false
}

subprojects {
Expand Down
2 changes: 1 addition & 1 deletion documentify-starters/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ subprojects {
}
dependencies {
compileOnly(rootProject.libs.spring.boot.starter.test)
api(rootProject.projects.documentifyCore)
api(rootProject.projects.documentifyProject.documentifyCore)
}
}
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
dependencies {
api(projects.documentifyCore)
api(projects.documentifyProject.documentifyCore)
api(projects.documentifyProject.documentifyMvc)
api(libs.spring.restdocs.mockmvc)
api(libs.spring.restdocs.restassured)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
dependencies {
api(projects.documentifyCore)
api(projects.documentifyProject.documentifyCore)
api(projects.documentifyProject.documentifyReactive)
api(libs.spring.restdocs.webtestclient)
api(libs.restdocs.api.spec)
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
project.name=documentify

project.group=io.github.bgmsound
project.version.id=1.2.4
project.version.id=1.2.5
project.artifact=documentify

project.description=Documentify is a tool to generate API documentation from source code.
Expand Down
4 changes: 2 additions & 2 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ plugins {
id("org.gradle.toolchains.foojay-resolver-convention") version "0.8.0"
}

include("documentify-core")
include("documentify-plugin")
include("documentify-project")
include("documentify-project:documentify-core")
include("documentify-project:documentify-plugin")
include("documentify-project:documentify-mvc")
include("documentify-project:documentify-reactive")
include("documentify-sample")
Expand Down