Skip to content

Commit

Permalink
docs: generate Swagger API documentation for DSP APIs (#3937)
Browse files Browse the repository at this point in the history
  • Loading branch information
bscholtes1A committed Feb 29, 2024
1 parent 17f2e98 commit d118877
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@

plugins {
`java-library`
id("io.swagger.core.v3.swagger-gradle-plugin")
}

dependencies {
Expand All @@ -33,3 +34,9 @@ dependencies {
testImplementation(project(":data-protocols:dsp:dsp-catalog:dsp-catalog-transform"))
testImplementation(libs.restAssured)
}

edcBuild {
swagger {
apiGroup.set("dsp-api")
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@

plugins {
`java-library`
id("io.swagger.core.v3.swagger-gradle-plugin")
}

dependencies {
Expand All @@ -33,3 +34,9 @@ dependencies {
testImplementation(testFixtures(project(":extensions:common:http:jersey-core")))
testImplementation(libs.restAssured)
}

edcBuild {
swagger {
apiGroup.set("dsp-api")
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@

plugins {
`java-library`
id("io.swagger.core.v3.swagger-gradle-plugin")
}

dependencies {
Expand All @@ -33,3 +34,9 @@ dependencies {

testImplementation(libs.restAssured)
}

edcBuild {
swagger {
apiGroup.set("dsp-api")
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@

plugins {
`java-library`
id("io.swagger.core.v3.swagger-gradle-plugin")
}

dependencies {
Expand All @@ -28,3 +29,9 @@ dependencies {
testImplementation(testFixtures(project(":extensions:common:http:jersey-core")))
testImplementation(libs.restAssured)
}

edcBuild {
swagger {
apiGroup.set("dsp-api")
}
}

0 comments on commit d118877

Please sign in to comment.