Skip to content

Commit

Permalink
Fixed compatability issue with JRE 9+.
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxMaeder committed May 17, 2020
1 parent 50cfb06 commit 74de2d7
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 8 deletions.
6 changes: 3 additions & 3 deletions DriveBackup/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>2.3</version>
<version>3.2.3</version>
<configuration>
<relocations>
<relocation>
Expand Down Expand Up @@ -81,9 +81,9 @@
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.jayway.restassured</groupId>
<groupId>io.rest-assured</groupId>
<artifactId>rest-assured</artifactId>
<version>2.8.0</version>
<version>4.3.0</version>
</dependency>
<dependency>
<groupId>commons-net</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
import ratismal.drivebackup.util.Timer;

import java.io.File;
import java.text.DecimalFormat;
import java.util.*;

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@
import com.google.api.client.json.jackson2.JacksonFactory;
import com.google.api.services.drive.Drive;
import com.google.api.services.drive.model.*;
import com.jayway.restassured.response.Response;
import io.restassured.response.Response;

import ratismal.drivebackup.DriveBackup;
import ratismal.drivebackup.config.Config;
import ratismal.drivebackup.util.MessageUtil;

import static com.jayway.restassured.RestAssured.given;
import static io.restassured.RestAssured.given;

import java.io.BufferedReader;
import java.io.FileReader;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package ratismal.drivebackup.onedrive;

import com.jayway.restassured.response.Response;
import io.restassured.response.Response;

import org.bukkit.Bukkit;
import org.bukkit.scheduler.BukkitScheduler;
Expand All @@ -19,7 +19,7 @@
import java.util.Iterator;
import java.util.List;

import static com.jayway.restassured.RestAssured.given;
import static io.restassured.RestAssured.given;

/**
* Created by Redemption on 2/24/2016.
Expand Down

0 comments on commit 74de2d7

Please sign in to comment.