Skip to content

Commit dfcf61c

Browse files
committed
fix: update docx4j version and add required maven deps so that pdf export works
Fixes #136
1 parent 55391b5 commit dfcf61c

File tree

1 file changed

+16
-11
lines changed

1 file changed

+16
-11
lines changed

pom.xml

Lines changed: 16 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -134,25 +134,30 @@
134134
<artifactId>opencsv</artifactId>
135135
<version>5.6</version>
136136
</dependency>
137-
<dependency>
138-
<groupId>org.docx4j</groupId>
139-
<artifactId>docx4j-JAXB-Internal</artifactId>
140-
<version>8.3.8</version>
141-
</dependency>
142137
<dependency>
143138
<groupId>org.docx4j</groupId>
144139
<artifactId>docx4j-JAXB-ReferenceImpl</artifactId>
145-
<version>8.3.8</version>
140+
<version>11.5.0</version>
146141
</dependency>
147142
<dependency>
148143
<groupId>org.docx4j</groupId>
149144
<artifactId>docx4j-JAXB-MOXy</artifactId>
150-
<version>8.3.8</version>
145+
<version>11.5.0</version>
151146
</dependency>
152147
<dependency>
153148
<groupId>org.docx4j</groupId>
154149
<artifactId>docx4j-export-fo</artifactId>
155-
<version>8.3.8</version>
150+
<version>11.5.0</version>
151+
</dependency>
152+
<dependency>
153+
<groupId>org.apache.commons</groupId>
154+
<artifactId>commons-compress</artifactId>
155+
<version>1.27.1</version>
156+
</dependency>
157+
<dependency>
158+
<groupId>commons-io</groupId>
159+
<artifactId>commons-io</artifactId>
160+
<version>2.16.1</version>
156161
</dependency>
157162
<dependency>
158163
<groupId>com.flowingcode.addons</groupId>
@@ -365,7 +370,7 @@
365370
<doclint>none</doclint>
366371
<failOnWarnings>true</failOnWarnings>
367372
<links>
368-
<link>https://javadoc.io/doc/com.vaadin/vaadin-platform-javadoc/${vaadin.version}</link>
373+
<link>https://javadoc.io/doc/com.vaadin/vaadin-platform-javadoc/${vaadin.version}</link>
369374
</links>
370375
</configuration>
371376
</plugin>
@@ -527,7 +532,7 @@
527532
</profile>
528533
<profile>
529534
<id>demo-jar</id>
530-
<build>
535+
<build>
531536
<plugins>
532537
<plugin>
533538
<groupId>org.apache.maven.plugins</groupId>
@@ -551,7 +556,7 @@
551556
</plugin>
552557
</plugins>
553558
</build>
554-
</profile>
559+
</profile>
555560
</profiles>
556561

557562
</project>

0 commit comments

Comments
 (0)