Skip to content

Commit

Permalink
Use XStream2 where possible (#135)
Browse files Browse the repository at this point in the history
  • Loading branch information
basil authored Sep 19, 2023
1 parent 25ea6c9 commit f92a7fe
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
import hudson.tasks.junit.TestResultSummary;
import hudson.tasks.junit.TrendTestResultSummary;
import hudson.tasks.test.PipelineTestDetails;
import hudson.util.XStream2;
import io.jenkins.plugins.junit.storage.JunitTestResultStorage;
import io.jenkins.plugins.junit.storage.JunitTestResultStorageDescriptor;
import io.jenkins.plugins.junit.storage.TestResultImpl;
Expand Down Expand Up @@ -731,7 +732,7 @@ static class LocalConnectionSupplier extends ConnectionSupplier {
*/
static class RemoteConnectionSupplier extends ConnectionSupplier implements SerializableOnlyOverRemoting {

private static final XStream XSTREAM = new XStream();
private static final XStream XSTREAM = new XStream2();
private final String databaseXml;

static {
Expand Down

0 comments on commit f92a7fe

Please sign in to comment.