Skip to content

Commit

Permalink
upgrade org.json, fix project description fields
Browse files Browse the repository at this point in the history
  • Loading branch information
erosb committed Oct 30, 2024
1 parent a578afa commit a5b5111
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 10 deletions.
5 changes: 3 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@ dependencies {
testImplementation("junit:junit:4.13.2")
testImplementation("org.skyscreamer:jsonassert:1.5.0")

compileOnly("org.json:json:20231013")
compileOnly("org.json:json:20240303")
compileOnly("commons-fileupload:commons-fileupload:1.5")
testImplementation("org.json:json:20231013")
testImplementation("org.json:json:20240303")
testImplementation("commons-fileupload:commons-fileupload:1.5")
}

Expand Down Expand Up @@ -101,6 +101,7 @@ publishing {
developer {
id = 'erosb'
name = 'Bence Eros'
email = '[email protected]'
}
}
scm {
Expand Down
4 changes: 1 addition & 3 deletions kappa-restassured-adapter/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,7 @@ plugins {
id 'signing'
}

description = "openapi4j test project"

description = "openapi4j operation Servlet adapter"
description = "Kappa adapter for working with RestAssured"

dependencies {
api(project(":"))
Expand Down
4 changes: 1 addition & 3 deletions kappa-servlet-adapter/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,7 @@ plugins {
id 'signing'
}

description = "openapi4j test project"

description = "openapi4j operation Servlet adapter"
description = "Kappa adapter for working with the Servlet API"

dependencies {
api(project(":"))
Expand Down
2 changes: 1 addition & 1 deletion kappa-undertow-adapter/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
id 'signing'
}

description = "openapi4j operation Undertow adapter"
description = "Kappa adapter for working with Undertow"

dependencies {
api(project(":"))
Expand Down
2 changes: 1 addition & 1 deletion kappa-vertx-adapter/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
id 'signing'
}

description = "openapi4j operation Vert.x adapter"
description = "Kappa adapter for working with Vert.x"

dependencies {
api(project(":"))
Expand Down
1 change: 1 addition & 0 deletions publish.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ publishing {
developer {
id = 'erosb'
name = 'Bence Erős'
email = '[email protected]'
}
}
scm {
Expand Down

0 comments on commit a5b5111

Please sign in to comment.