Skip to content

Commit

Permalink
Removed unused dependency commons-codec
Browse files Browse the repository at this point in the history
  • Loading branch information
victormunoz committed Nov 30, 2016
1 parent e8535e8 commit 96fe0f6
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion package/linux/DPFManager.old.spec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Summary: DPF Manager
Name: dpf-manager
Version: 3.0
Version: 3.0.1
Release: 1
License: Unknown
Vendor: DPF Manager
Expand Down
2 changes: 1 addition & 1 deletion package/windows/DPF Manager.iss
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
; (To generate a new GUID, click Tools | Generate GUID inside the IDE.)
AppId={{0D5B5F16-9992-49DC-AD65-D66FE249CE67}
AppName=DPF Manager
AppVersion=3.0
AppVersion=3.0.1
AppVerName=DPF Manager {#SetupSetting("AppVersion")}
AppPublisher=DPF Manager
AppComments=DPF Manager
Expand Down
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<groupId>com.easyinnova</groupId>
<artifactId>dpf_manager</artifactId>
<packaging>jar</packaging>
<version>3.0</version>
<version>3.0.1</version>

<!--Properties-->
<properties>
Expand Down Expand Up @@ -293,11 +293,11 @@
</dependency>

<!--Codec Sha256-->
<dependency>
<!--<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<version>1.4</version>
</dependency>
</dependency>-->

<!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-project-info-reports-plugin -->
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,8 @@ public void insertNewJob(Long uuid, int state, int total, String input, String o
Long current = System.currentTimeMillis();
Jobs job = new Jobs();
job.setId(uuid);
job.setHash(DigestUtils.sha256Hex(uuid.toString()));
//job.setHash(DigestUtils.sha256Hex(uuid.toString()));
job.setHash(uuid.toString());
job.setState(state);
job.setTotalFiles(total);
job.setProcessedFiles(0);
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/version.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version=3.0
version=3.0.1

0 comments on commit 96fe0f6

Please sign in to comment.