Skip to content

Commit

Permalink
Changed to interfaces
Browse files Browse the repository at this point in the history
  • Loading branch information
codepitbull committed Jan 13, 2025
1 parent 8b31147 commit ca7b7cd
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions hivemq-edge/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -189,8 +189,6 @@ dependencies {
implementation(libs.jersey.hk2)
implementation(libs.jersey.media.json.jackson)
implementation(libs.jersey.media.multipart)
implementation(libs.jersey.container.servlet.core)
implementation(libs.servlet.api)

// Jackson
implementation(libs.jackson.jaxrs.json.provider)
Expand Down Expand Up @@ -281,6 +279,15 @@ tasks.register<GenerateTask>("genJaxRs") {
apiPackage.set("com.hivemq.edge.api")
modelPackage.set("com.hivemq.edge.api.model")
generateApiTests.set(false)
configOptions.set(
hashMapOf(
"dateLibrary" to "java8",
"generateBuilders" to "true",
"generatePom" to "false",
"interfaceOnly" to "true",

)
)
}

sourceSets {
Expand Down

0 comments on commit ca7b7cd

Please sign in to comment.