Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ This command-line backup utility takes a snapshot of the data in a Smartsheet Te

Release History
------------
* Auguest 15 , 2020 - version 1.7.0:
- fixed to remove oracle lib reference and upgraded to openjdk 11
* Jan 21, 2020 - fixed a broken link in the Readme
* Nov 9, 2018 - version 1.6.2:
- Updated vulnerable dependencies.
Expand Down
6 changes: 3 additions & 3 deletions dependency-reduced-pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<groupId>com.smartsheet.tools</groupId>
<artifactId>smartsheet-org-backup</artifactId>
<name>Smartsheet Org Backup</name>
<version>1.6.1</version>
<version>1.7.0</version>
<description>Backs up the Smartsheet sheets of all users in an organization to a local directory.</description>
<build>
<pluginManagement>
Expand Down Expand Up @@ -41,8 +41,8 @@
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>6</source>
<target>6</target>
<source>11</source>
<target>11</target>
</configuration>
</plugin>
</plugins>
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>6</source>
<target>6</target>
<source>11</source>
<target>11</target>
</configuration>
</plugin>
</plugins>
Expand Down
1 change: 0 additions & 1 deletion src/main/java/com/smartsheet/utils/HttpUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@
import com.smartsheet.exceptions.ServiceUnavailableException;
import com.smartsheet.restapi.service.RetryingSmartsheetService;
import com.smartsheet.tools.SmartsheetBackupTool;
import sun.misc.IOUtils;

/**
* Utilities for HTTP operations.
Expand Down