Skip to content

Commit

Permalink
fix(dependencies): use latest parboiled version to avoid IllegalState…
Browse files Browse the repository at this point in the history
…Exception in org.objectweb.asm.tree.analysis.BasicInterpreter
  • Loading branch information
EDGA6280 committed May 30, 2023
1 parent 45d2810 commit 5d03a4b
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>nl.jworks.markdown_to_asciidoc</groupId>
<artifactId>markdown_to_asciidoc</artifactId>
<version>2.0.0-SNAPSHOT</version>
<version>2.0.1-SNAPSHOT</version>
<description>
fork of https://github.com/bodiam/markdown-to-asciidoc
</description>
Expand All @@ -28,6 +28,17 @@
<groupId>org.pegdown</groupId>
<artifactId>pegdown</artifactId>
<version>1.6.0</version>
<exclusions>
<exclusion>
<groupId>org.parboiled</groupId>
<artifactId>parboiled-java</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.parboiled</groupId>
<artifactId>parboiled-java</artifactId>
<version>1.4.1</version>
</dependency>
<dependency>
<groupId>org.jsoup</groupId>
Expand Down

0 comments on commit 5d03a4b

Please sign in to comment.