Skip to content

Commit

Permalink
1. [DEPENDENCIES]::add jgrapht.
Browse files Browse the repository at this point in the history
  • Loading branch information
whtoo committed Oct 15, 2023
1 parent e400a70 commit 47686c6
Showing 1 changed file with 13 additions and 9 deletions.
22 changes: 13 additions & 9 deletions ep20/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,18 @@
<parser.g4.dir>src/main/java/org/teachfx/antlr4/ep20/parser</parser.g4.dir>
<run.main.entry>org.teachfx.antlr4.ep20.Compiler</run.main.entry>
</properties>
<!-- 运行测试 -->
<dependencies>

<dependency>
<groupId>org.jgrapht</groupId>
<artifactId>jgrapht-core</artifactId>
<version>1.5.2</version>
<scope>compile</scope>
</dependency>
</dependencies>


<!-- 添加ANTLR4插件 -->
<build>
<plugins>
Expand Down Expand Up @@ -52,13 +64,5 @@
</resources>
</build>

<!-- 运行测试 -->
<dependencies>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>5.8.2</version>
<scope>test</scope>
</dependency>
</dependencies>

</project>

0 comments on commit 47686c6

Please sign in to comment.