Skip to content

Commit

Permalink
update to org.docx4j:docx4j-JAXB-ReferenceImpl:11.4.9
Browse files Browse the repository at this point in the history
  • Loading branch information
vsch committed May 2, 2023
1 parent dff663d commit 237b1b0
Show file tree
Hide file tree
Showing 8 changed files with 104 additions and 23 deletions.
19 changes: 19 additions & 0 deletions .idea/libraries/apache_xmlgraphics_commons.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

96 changes: 77 additions & 19 deletions .idea/libraries/docx4j_JAXB_ReferenceImpl.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions VERSION.md
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,9 @@

## 0.64.4

* Change: update to `org.docx4j:docx4j-JAXB-ReferenceImpl:11.4.9`, if you have code using
`javax.xml.bind` package from the dependency, you will need to change it to
`jakarta.xml.bind`. Global search/replace across the project will do it.
* Add: `ResizableImageExtension` documentation that it does not play with the rest of the
library renderers and is an unsupported extension.
* Fix: update log4j1 to log4j2 to 2.20.0
Expand Down
1 change: 1 addition & 0 deletions flexmark-docx-converter/flexmark-docx-converter.iml
Original file line number Diff line number Diff line change
Expand Up @@ -63,5 +63,6 @@
<orderEntry type="library" name="apache.logging.log4j.core" level="project" />
<orderEntry type="library" name="apache.logging.log4j.api" level="project" />
<orderEntry type="library" name="apache.logging.log4j.1.2.api" level="project" />
<orderEntry type="library" name="apache.xmlgraphics.commons" level="project" />
</component>
</module>
2 changes: 1 addition & 1 deletion flexmark-docx-converter/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@
<dependency>
<groupId>org.docx4j</groupId>
<artifactId>docx4j-JAXB-ReferenceImpl</artifactId>
<version>11.3.2</version>
<version>11.4.9</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
import org.docx4j.wml.*;
import org.jetbrains.annotations.NotNull;

import javax.xml.bind.JAXBElement;
import jakarta.xml.bind.JAXBElement;
import java.awt.image.BufferedImage;
import java.math.BigInteger;
import java.nio.charset.StandardCharsets;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import javax.xml.bind.JAXBElement;
import jakarta.xml.bind.JAXBElement;
import java.awt.geom.Dimension2D;
import java.io.File;
import java.io.IOException;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
import org.docx4j.wml.R.FootnoteRef;
import org.docx4j.wml.R.Separator;

import javax.xml.bind.JAXBElement;
import jakarta.xml.bind.JAXBElement;
import java.math.BigInteger;
import java.util.*;
import java.util.concurrent.atomic.AtomicInteger;
Expand Down

0 comments on commit 237b1b0

Please sign in to comment.