Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
PR reviews
  • Loading branch information
jandro996 committed Jul 2, 2025
commit 9e0f4df657b50a69f791602cd43687c61aed20db
2 changes: 1 addition & 1 deletion dd-smoke-tests/resteasy/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ dependencies {
implementation group: 'org.jboss.resteasy', name: 'resteasy-undertow', version:'3.1.0.Final'
implementation group: 'org.jboss.resteasy', name: 'resteasy-cdi', version:'3.1.0.Final'
implementation group: 'org.jboss.weld.servlet', name: 'weld-servlet', version: '2.4.8.Final'
implementation 'org.jboss.resteasy:resteasy-jackson2-provider:3.1.0.Final'
implementation group: 'org.jboss.resteasy', name: 'resteasy-jackson2-provider', version: '3.1.0.Final'

implementation group: 'javax.el', name: 'javax.el-api', version:'3.0.0'

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ public Response getCookie() throws SQLException {
@POST
@Produces(MediaType.APPLICATION_JSON)
@Consumes(MediaType.APPLICATION_JSON)
public Response bodyJson(RequestBody input) {
public Response apiSecurityResponse(RequestBody input) {
return Response.ok(input).build();
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,7 @@ import spock.lang.IgnoreIf

import java.util.zip.GZIPInputStream

@IgnoreIf({
System.getProperty("java.vendor").contains("IBM") && System.getProperty("java.version").contains("1.8.")
})

class ResteasyAppsecSmokeTest extends AbstractAppSecServerSmokeTest {

@Override
Expand Down Expand Up @@ -71,7 +69,6 @@ class ResteasyAppsecSmokeTest extends AbstractAppSecServerSmokeTest {
void 'test response schema extraction'() {
given:
def url = "http://localhost:${httpPort}/hello/api_security/response"
def client = OkHttpUtils.clientBuilder().build()
def body = [
"main" : [["key": "id001", "value": 1345.67], ["value": 1567.89, "key": "id002"]],
"nullable": null,
Expand Down
Loading