Skip to content

Commit 7e72857

Browse files
committed
Update to 3.0.0 (max JDK11)
1 parent 8e1d7c5 commit 7e72857

2 files changed

Lines changed: 14 additions & 12 deletions

File tree

pom.xml

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -6,46 +6,48 @@
66

77
<groupId>csv2pdf</groupId>
88
<artifactId>csv2pdf</artifactId>
9-
<version>2.0.0</version>
9+
<version>3.0.0</version>
1010

1111
<name>csv2pdf</name>
1212

1313
<properties>
1414
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
15-
<maven.compiler.source>1.8</maven.compiler.source>
16-
<maven.compiler.target>1.8</maven.compiler.target>
15+
<maven.compiler.source>11</maven.compiler.source>
16+
<maven.compiler.target>11</maven.compiler.target>
1717
</properties>
1818

1919
<dependencies>
2020
<dependency>
2121
<groupId>commons-cli</groupId>
2222
<artifactId>commons-cli</artifactId>
23-
<version>1.5.0</version>
23+
<version>1.9.0</version>
2424
</dependency>
2525
<dependency>
2626
<groupId>net.sourceforge.csvjdbc</groupId>
2727
<artifactId>csvjdbc</artifactId>
28-
<version>1.0.40</version>
28+
<version>1.0.46</version>
2929
</dependency>
3030
<dependency>
3131
<groupId>org.freemarker</groupId>
3232
<artifactId>freemarker</artifactId>
33-
<version>2.3.32</version>
33+
<version>2.3.34</version>
3434
</dependency>
3535
<dependency>
3636
<groupId>org.jsoup</groupId>
3737
<artifactId>jsoup</artifactId>
38-
<version>1.16.1</version>
38+
<version>1.19.1</version>
3939
</dependency>
40+
4041
<dependency>
4142
<groupId>org.xhtmlrenderer</groupId>
42-
<artifactId>flying-saucer-pdf-openpdf</artifactId>
43-
<version>9.1.22</version>
43+
<artifactId>flying-saucer-pdf</artifactId>
44+
<version>9.5.2</version>
4445
</dependency>
46+
4547
<dependency>
4648
<groupId>org.apache.commons</groupId>
4749
<artifactId>commons-text</artifactId>
48-
<version>1.10.0</version>
50+
<version>1.13.0</version>
4951
</dependency>
5052
</dependencies>
5153

src/main/java/csv2pdf/App.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,15 +52,15 @@ private static ArrayList<HashMap<String, Object>> getData(String folder, String
5252
}
5353

5454
public static void main(String[] args) throws ClassNotFoundException, SQLException,
55-
java.io.IOException, freemarker.template.TemplateException {
55+
java.io.IOException, freemarker.template.TemplateException, com.lowagie.text.DocumentException {
5656
System.out.println("·------------------------------------------·");
5757
System.out.println("| ___ ______ |");
5858
System.out.println("| ___________ _|__ \\ ____ ____/ / __/ |");
5959
System.out.println("| / ___/ ___/ | / /_/ // __ \\/ __ / /_ |");
6060
System.out.println("| / /__(__ )| |/ / __// /_/ / /_/ / __/ |");
6161
System.out.println("| \\___/____/ |___/____/ .___/\\__,_/_/ |");
6262
System.out.println("| /_/ |");
63-
System.out.println("| v.2.0.0 |");
63+
System.out.println("| v.3.0.0 |");
6464
System.out.println("·------------------------------------------·");
6565

6666
Options options = new Options();

0 commit comments

Comments
 (0)