Skip to content

Commit b5d8307

Browse files
drewharveyjavier-godoy
authored andcommitted
fix: update docx4j version and add required maven deps so that pdf export works
Fixes #136
1 parent e097876 commit b5d8307

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
@@ -142,25 +142,30 @@
142142
<artifactId>opencsv</artifactId>
143143
<version>5.6</version>
144144
</dependency>
145-
<dependency>
146-
<groupId>org.docx4j</groupId>
147-
<artifactId>docx4j-JAXB-Internal</artifactId>
148-
<version>8.3.8</version>
149-
</dependency>
150145
<dependency>
151146
<groupId>org.docx4j</groupId>
152147
<artifactId>docx4j-JAXB-ReferenceImpl</artifactId>
153-
<version>8.3.8</version>
148+
<version>11.5.0</version>
154149
</dependency>
155150
<dependency>
156151
<groupId>org.docx4j</groupId>
157152
<artifactId>docx4j-JAXB-MOXy</artifactId>
158-
<version>8.3.8</version>
153+
<version>11.5.0</version>
159154
</dependency>
160155
<dependency>
161156
<groupId>org.docx4j</groupId>
162157
<artifactId>docx4j-export-fo</artifactId>
163-
<version>8.3.8</version>
158+
<version>11.5.0</version>
159+
</dependency>
160+
<dependency>
161+
<groupId>org.apache.commons</groupId>
162+
<artifactId>commons-compress</artifactId>
163+
<version>1.27.1</version>
164+
</dependency>
165+
<dependency>
166+
<groupId>commons-io</groupId>
167+
<artifactId>commons-io</artifactId>
168+
<version>2.16.1</version>
164169
</dependency>
165170
<dependency>
166171
<groupId>com.flowingcode.addons</groupId>
@@ -371,7 +376,7 @@
371376
<doclint>none</doclint>
372377
<failOnWarnings>true</failOnWarnings>
373378
<links>
374-
<link>https://javadoc.io/doc/com.vaadin/vaadin-platform-javadoc/${vaadin.version}</link>
379+
<link>https://javadoc.io/doc/com.vaadin/vaadin-platform-javadoc/${vaadin.version}</link>
375380
</links>
376381
</configuration>
377382
</plugin>
@@ -533,7 +538,7 @@
533538
</profile>
534539
<profile>
535540
<id>demo-jar</id>
536-
<build>
541+
<build>
537542
<plugins>
538543
<plugin>
539544
<groupId>org.apache.maven.plugins</groupId>
@@ -557,7 +562,7 @@
557562
</plugin>
558563
</plugins>
559564
</build>
560-
</profile>
565+
</profile>
561566
</profiles>
562567

563568
</project>

0 commit comments

Comments
 (0)