Added test dependencies.
This commit is contained in:
parent
be8e5dd3ca
commit
9d3ed24286
13
pom.xml
13
pom.xml
|
@ -49,6 +49,19 @@
|
|||
<artifactId>h2</artifactId>
|
||||
<version>2.2.224</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>org.junit.jupiter</groupId>
|
||||
<artifactId>junit-jupiter-api</artifactId>
|
||||
<version>5.10.0</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.junit.jupiter</groupId>
|
||||
<artifactId>junit-jupiter-engine</artifactId>
|
||||
<version>5.10.0</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
<build>
|
||||
|
|
|
@ -0,0 +1,3 @@
|
|||
module com.andrewlalis.perfin_test {
|
||||
requires org.junit.jupiter.api;
|
||||
}
|
Loading…
Reference in New Issue