Skip to content

Commit

Permalink
fix: update docx4j version and add required maven deps so that pdf ex…
Browse files Browse the repository at this point in the history
…port works

Fixes #136
  • Loading branch information
drewharvey authored and mlopezFC committed Oct 15, 2024
1 parent 98b488d commit c833f4a
Showing 1 changed file with 16 additions and 11 deletions.
27 changes: 16 additions & 11 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -142,25 +142,30 @@
<artifactId>opencsv</artifactId>
<version>5.6</version>
</dependency>
<dependency>
<groupId>org.docx4j</groupId>
<artifactId>docx4j-JAXB-Internal</artifactId>
<version>8.3.8</version>
</dependency>
<dependency>
<groupId>org.docx4j</groupId>
<artifactId>docx4j-JAXB-ReferenceImpl</artifactId>
<version>8.3.8</version>
<version>11.5.0</version>
</dependency>
<dependency>
<groupId>org.docx4j</groupId>
<artifactId>docx4j-JAXB-MOXy</artifactId>
<version>8.3.8</version>
<version>11.5.0</version>
</dependency>
<dependency>
<groupId>org.docx4j</groupId>
<artifactId>docx4j-export-fo</artifactId>
<version>8.3.8</version>
<version>11.5.0</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-compress</artifactId>
<version>1.27.1</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.16.1</version>
</dependency>
<dependency>
<groupId>com.flowingcode.addons</groupId>
Expand Down Expand Up @@ -372,7 +377,7 @@
<doclint>none</doclint>
<failOnWarnings>true</failOnWarnings>
<links>
<link>https://javadoc.io/doc/com.vaadin/vaadin-platform-javadoc/${vaadin.version}</link>
<link>https://javadoc.io/doc/com.vaadin/vaadin-platform-javadoc/${vaadin.version}</link>
</links>
</configuration>
</plugin>
Expand Down Expand Up @@ -534,7 +539,7 @@
</profile>
<profile>
<id>demo-jar</id>
<build>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand All @@ -558,7 +563,7 @@
</plugin>
</plugins>
</build>
</profile>
</profile>
</profiles>

</project>

0 comments on commit c833f4a

Please sign in to comment.