Skip to content

Commit

Permalink
Changes to replace net.minidev.json.JSONArray with com.nimbusds.jose.…
Browse files Browse the repository at this point in the history
…shaded.json.JSONArray
  • Loading branch information
sumesh-aot committed Dec 8, 2022
1 parent 17b8de0 commit f0c0bca
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import com.fasterxml.jackson.databind.JsonNode;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.nimbusds.oauth2.sdk.util.CollectionUtils;
import net.minidev.json.JSONArray;
import com.nimbusds.jose.shaded.json.JSONArray;
import org.apache.commons.lang.StringUtils;
import org.camunda.bpm.engine.ProcessEngines;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package org.camunda.bpm.extension.hooks.controllers;

import com.nimbusds.oauth2.sdk.util.CollectionUtils;
import net.minidev.json.JSONArray;
import com.nimbusds.jose.shaded.json.JSONArray;
import org.apache.commons.lang.StringEscapeUtils;
import org.apache.commons.lang.StringUtils;
import org.camunda.bpm.extension.hooks.controllers.data.Task;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package org.camunda.bpm.extension.keycloak.rest;


import net.minidev.json.JSONArray;
import com.nimbusds.jose.shaded.json.JSONArray;
import org.apache.commons.lang3.StringUtils;
import org.camunda.bpm.engine.IdentityService;
import org.slf4j.Logger;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import static org.mockito.Mockito.*;
import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.*;

import net.minidev.json.JSONArray;
import com.nimbusds.jose.shaded.json.JSONArray;
import org.camunda.bpm.engine.AuthorizationService;
import org.camunda.bpm.engine.ProcessEngines;
import org.camunda.bpm.engine.authorization.AuthorizationQuery;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package org.camunda.bpm.extension.hooks.controllers;

import net.minidev.json.JSONArray;
import com.nimbusds.jose.shaded.json.JSONArray;
import org.camunda.bpm.extension.hooks.controllers.data.Task;
import org.camunda.bpm.extension.hooks.controllers.data.Variable;
import org.camunda.bpm.extension.hooks.controllers.stubs.TaskStub;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
import org.springframework.security.oauth2.client.OAuth2AuthorizedClientService;
import org.springframework.security.oauth2.core.oidc.user.OidcUser;
import org.springframework.test.context.junit.jupiter.SpringExtension;
import net.minidev.json.JSONArray;
import com.nimbusds.jose.shaded.json.JSONArray;

import static org.junit.Assert.assertEquals;
import static org.mockito.Mockito.mock;
Expand Down

0 comments on commit f0c0bca

Please sign in to comment.