Skip to content

Commit dd2270a

Browse files
committed
[chore]failed loading dependencies when pegdown test
1 parent 45702ae commit dd2270a

1 file changed

Lines changed: 25 additions & 0 deletions

File tree

flexmark-profile-pegdown/pom.xml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,19 @@
1111
<name>flexmark-java pegdown profile</name>
1212
<description>flexmark-java extension for setting flexmark options by using pegdown extension flags</description>
1313

14+
<build>
15+
<plugins>
16+
<plugin>
17+
<groupId>org.apache.maven.plugins</groupId>
18+
<artifactId>maven-surefire-plugin</artifactId>
19+
<version>3.2.5</version>
20+
<configuration>
21+
<argLine>--add-opens=java.base/java.lang=ALL-UNNAMED</argLine>
22+
</configuration>
23+
</plugin>
24+
</plugins>
25+
</build>
26+
1427
<dependencies>
1528
<dependency>
1629
<groupId>com.vladsch.flexmark</groupId>
@@ -115,6 +128,18 @@
115128
<artifactId>pegdown</artifactId>
116129
<version>1.6.0</version>
117130
<scope>test</scope>
131+
<exclusions>
132+
<exclusion>
133+
<groupId>org.parboiled</groupId>
134+
<artifactId>parboiled-java</artifactId>
135+
</exclusion>
136+
</exclusions>
137+
</dependency>
138+
<dependency>
139+
<groupId>org.parboiled</groupId>
140+
<artifactId>parboiled-java</artifactId>
141+
<version>1.1.7</version>
142+
<scope>test</scope>
118143
</dependency>
119144
</dependencies>
120145
</project>

0 commit comments

Comments
 (0)