Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Updates all dependencies #5

Merged
merged 2 commits into from
Dec 9, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -49,35 +49,35 @@
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>20180813</version>
<version>20210307</version>
</dependency>
<dependency>
<groupId>org.jsoup</groupId>
<artifactId>jsoup</artifactId>
<version>1.11.3</version>
<version>1.14.3</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.8.1</version>
<version>3.12.0</version>
</dependency>
<dependency>
<groupId>com.github.slugify</groupId>
<artifactId>slugify</artifactId>
<version>2.3</version>
<version>2.5</version>
</dependency>

<!-- Test dependencies -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<version>4.13.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.6</version>
<version>2.11.0</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand All @@ -87,7 +87,7 @@
<plugin><!-- Compile jflex lexers -->
<groupId>de.jflex</groupId>
<artifactId>jflex-maven-plugin</artifactId>
<version>1.6.1</version>
<version>1.8.2</version>
<executions>
<execution>
<goals>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ protected void appendTextNode(boolean stripNewLines) {
String text = getText();
if (stripNewLines) text = skipRight(text, " \t\n\0");
if (!text.isEmpty()) {
currentElement.appendChild(new TextNode(text, ""));
currentElement.appendChild(new TextNode(text));
clearText();
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ public enum AsciidocRenderer {
}
moveChildNodes(x, sectionBody1);
if (sectionBody1.childNodeSize() == 0) {
sectionBody1.appendChild(new TextNode("", ""));
sectionBody1.appendChild(new TextNode(""));
}
x.appendChild(sectionBody1);
break;
Expand All @@ -157,7 +157,7 @@ public enum AsciidocRenderer {
// Move all but the first child node
moveChildNodesSkipFirst(x, sectionBody);
if (sectionBody.childNodeSize() == 0) {
sectionBody.appendChild(new TextNode("", ""));
sectionBody.appendChild(new TextNode(""));
}
x.appendChild(sectionBody);
break;
Expand Down