Skip to content

Commit

Permalink
Runnable tests
Browse files Browse the repository at this point in the history
  • Loading branch information
sleipnir committed Jul 30, 2024
1 parent d6a29f0 commit 04528f1
Showing 1 changed file with 30 additions and 2 deletions.
32 changes: 30 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,15 @@
<maven.compiler.target>11</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<caffeine.version>3.1.8</caffeine.version>
<junit.version>5.10.3</junit.version>
<mysql-connector.version>8.4.0</mysql-connector.version>
<okhttp.version>4.12.0</okhttp.version>
<protobuf.version>4.27.2</protobuf.version>
<grpc.version>1.65.0</grpc.version>
<logback-classic.version>1.4.12</logback-classic.version>
<testcontainers.version>1.20.0</testcontainers.version>
<junit.jupiter.version>5.10.3</junit.jupiter.version>
<junit.platform.version>1.8.2</junit.platform.version>
<surefire.plugin.version>3.0.0-M5</surefire.plugin.version>
</properties>

<dependencies>
Expand Down Expand Up @@ -67,7 +69,20 @@
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>${junit.version}</version>
<version>${junit.jupiter.version}</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>${junit.jupiter.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>${junit.jupiter.version}</version>
<scope>test</scope>
</dependency>

Expand Down Expand Up @@ -172,6 +187,19 @@
</execution>
</executions>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${surefire.plugin.version}</version>
<configuration>
<includes>
<include>**/*Tests.java</include>
<include>**/*Test.java</include>
</includes>
</configuration>
</plugin>

</plugins>
</build>
</project>

0 comments on commit 04528f1

Please sign in to comment.