Skip to content

Commit

Permalink
Merge pull request #74 from moacirrf/ft-update-libs
Browse files Browse the repository at this point in the history
FT Update all dependencies
  • Loading branch information
moacirrf authored May 13, 2024
2 parents 70dc10f + 0206537 commit 07dfcdf
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 21 deletions.
36 changes: 18 additions & 18 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<version>3.2.4</version>
<executions>
<execution>
<id>sign-artifacts</id>
Expand Down Expand Up @@ -90,7 +90,7 @@
<plugin>
<groupId>org.apache.netbeans.utilities</groupId>
<artifactId>nbm-maven-plugin</artifactId>
<version>4.7</version>
<version>14.0</version>
<extensions>true</extensions>
<configuration>
<author>Moacir da Roza [email protected]</author>
Expand All @@ -114,7 +114,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<version>3.13.0</version>
<configuration>
<source>11</source>
<target>11</target>
Expand All @@ -124,7 +124,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.2.2</version>
<version>3.4.1</version>
<configuration>
<archive>
<manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
Expand All @@ -135,13 +135,13 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.22.0</version>
<version>3.2.5</version>
</plugin>

<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.10</version>
<version>0.8.12</version>
<executions>
<execution>
<goals>
Expand All @@ -164,78 +164,78 @@
<dependency>
<groupId>com.vladsch.flexmark</groupId>
<artifactId>flexmark-ext-gfm-strikethrough</artifactId>
<version>0.64.0</version>
<version>0.64.8</version>
</dependency>

<dependency>
<groupId>com.vladsch.flexmark</groupId>
<artifactId>flexmark-ext-tables</artifactId>
<version>0.64.0</version>
<version>0.64.8</version>
</dependency>

<dependency>
<groupId>com.vladsch.flexmark</groupId>
<artifactId>flexmark-ext-gfm-tasklist</artifactId>
<version>0.64.0</version>
<version>0.64.8</version>
</dependency>

<dependency>
<groupId>com.vladsch.flexmark</groupId>
<artifactId>flexmark-util</artifactId>
<version>0.64.0</version>
<version>0.64.8</version>
</dependency>

<dependency>
<groupId>com.vladsch.flexmark</groupId>
<artifactId>flexmark-docx-converter</artifactId>
<version>0.64.0</version>
<version>0.64.8</version>
</dependency>

<dependency>
<groupId>com.vladsch.flexmark</groupId>
<artifactId>flexmark-pdf-converter</artifactId>
<version>0.64.0</version>
<version>0.64.8</version>
</dependency>

<dependency>
<groupId>com.vladsch.flexmark</groupId>
<artifactId>flexmark-profile-pegdown</artifactId>
<version>0.64.0</version>
<version>0.64.8</version>
<type>jar</type>
</dependency>

<!-- jsoup -->
<dependency>
<groupId>org.jsoup</groupId>
<artifactId>jsoup</artifactId>
<version>1.15.3</version>
<version>1.17.2</version>
</dependency>

<!-- Apache Batik Transcoder-->
<dependency>
<groupId>org.apache.xmlgraphics</groupId>
<artifactId>batik-transcoder</artifactId>
<version>1.14</version>
<version>1.17</version>
</dependency>

<dependency>
<groupId>org.apache.xmlgraphics</groupId>
<artifactId>batik-codec</artifactId>
<version>1.14</version>
<version>1.17</version>
</dependency>

<!-- Commons Text-->
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-text</artifactId>
<version>1.9</version>
<version>1.12.0</version>
</dependency>

<!-- Objectweb -->
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm</artifactId>
<version>9.4</version>
<version>9.7</version>
</dependency>

<!-- Junit -->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@
import java.util.List;
import java.util.Locale;
import java.util.Set;
import javax.xml.bind.JAXBElement;
import jakarta.xml.bind.JAXBElement;
import org.docx4j.UnitsOfMeasurement;
import org.docx4j.dml.wordprocessingDrawing.Anchor;
import org.docx4j.dml.wordprocessingDrawing.Inline;
Expand Down Expand Up @@ -273,8 +273,6 @@ public class MyCoreNodeDocxRenderer implements PhasedNodeDocxRenderer {
Runnable ordinalRunnable;
final private HtmlIdGenerator headerIdGenerator; // used for enumerated text reference
final private HashMap<String, Integer> formControlCounts = new HashMap<>();
// final HashMap<JekyllTagBlock, Document> includedDocumentsMap = new HashMap<>();
// Parser parser;
private final ImageNodeHelper imageNodeHelper = new ImageNodeHelper();

final private FootnoteRepository footnoteRepository;
Expand Down

0 comments on commit 07dfcdf

Please sign in to comment.