Skip to content

Commit c833f4a

Browse files
drewharveymlopezFC
authored andcommitted
fix: update docx4j version and add required maven deps so that pdf export works
Fixes #136
1 parent 98b488d commit c833f4a

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>
@@ -372,7 +377,7 @@
372377
<doclint>none</doclint>
373378
<failOnWarnings>true</failOnWarnings>
374379
<links>
375-
<link>https://javadoc.io/doc/com.vaadin/vaadin-platform-javadoc/${vaadin.version}</link>
380+
<link>https://javadoc.io/doc/com.vaadin/vaadin-platform-javadoc/${vaadin.version}</link>
376381
</links>
377382
</configuration>
378383
</plugin>
@@ -534,7 +539,7 @@
534539
</profile>
535540
<profile>
536541
<id>demo-jar</id>
537-
<build>
542+
<build>
538543
<plugins>
539544
<plugin>
540545
<groupId>org.apache.maven.plugins</groupId>
@@ -558,7 +563,7 @@
558563
</plugin>
559564
</plugins>
560565
</build>
561-
</profile>
566+
</profile>
562567
</profiles>
563568

564569
</project>

0 commit comments

Comments
 (0)