Skip to content

Commit

Permalink
upgraded SAMBox with a number of fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
torakiki committed Sep 30, 2021
1 parent ea1ea49 commit 61dedd1
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pdfsam-gui/src/main/java/org/pdfsam/PdfsamApp.java
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@
public class PdfsamApp extends Application {
private static final Logger LOG = LoggerFactory.getLogger(PdfsamApp.class);

private static StopWatch STOPWATCH = new StopWatch();
private static final StopWatch STOPWATCH = new StopWatch();
private Stage primaryStage;
private UserContext userContext = new DefaultUserContext();
private List<String> rawParameters;
Expand Down
9 changes: 8 additions & 1 deletion pdfsam-service/pom.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<description>Service layer for PDFsam</description>
<parent>
Expand Down Expand Up @@ -81,6 +83,11 @@
<groupId>com.fasterxml.jackson.jr</groupId>
<artifactId>jackson-jr-objects</artifactId>
</dependency>
<dependency>
<groupId>org.sejda</groupId>
<artifactId>sambox</artifactId>
<version>${sambox.version}</version>
</dependency>
<!-- test dependencies -->
<dependency>
<groupId>jdepend</groupId>
Expand Down
1 change: 1 addition & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -238,6 +238,7 @@
<jdepend.version>2.9.1</jdepend.version>
<hibernate-validator.version>4.2.0.Final</hibernate-validator.version>
<sejda.version>4.2.5</sejda.version>
<sambox.version>2.3.0</sambox.version>
<sejda.commons.version>1.1.7</sejda.commons.version>
<eventstudio.version>2.0.1</eventstudio.version>
<injector.version>2.0.0</injector.version>
Expand Down

0 comments on commit 61dedd1

Please sign in to comment.