Skip to content

Commit

Permalink
fix: add junit dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
liewstar committed Oct 5, 2024
1 parent 32c3557 commit e04fc2c
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@
</issueManagement>

<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.7.12</version>
</parent>
<licenses>
<license>
Expand Down Expand Up @@ -58,6 +58,7 @@
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>8.0.33</version>
</dependency>
<dependency>
<groupId>org.casbin</groupId>
Expand All @@ -80,6 +81,12 @@
<artifactId>spring-boot-starter-test</artifactId>
</dependency>

<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>

</dependencies>

</project>

0 comments on commit e04fc2c

Please sign in to comment.