Skip to content

Commit d5f2be9

Browse files
bigbesTotktonada
authored andcommitted
Give ability to run tests from maven (mvn test)
1 parent 48196eb commit d5f2be9

File tree

1 file changed

+25
-1
lines changed

1 file changed

+25
-1
lines changed

pom.xml

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<url>https://github.com/tarantool/tarantool-java</url>
2525
<connection>scm:git:git://github.com/tarantool/tarantool-java.git</connection>
2626
<developerConnection>scm:git:[email protected]:tarantool/tarantool-java.git</developerConnection>
27-
</scm>
27+
</scm>
2828

2929
<developers>
3030
<developer>
@@ -85,6 +85,30 @@
8585
<version>1.23</version>
8686
<scope>test</scope>
8787
</dependency>
88+
<dependency>
89+
<groupId>org.junit.jupiter</groupId>
90+
<artifactId>junit-jupiter-api</artifactId>
91+
<version>${junit.jupiter.version}</version>
92+
<scope>test</scope>
93+
</dependency>
94+
<dependency>
95+
<groupId>org.junit.jupiter</groupId>
96+
<artifactId>junit-jupiter-engine</artifactId>
97+
<version>${junit.jupiter.version}</version>
98+
<scope>test</scope>
99+
</dependency>
100+
<dependency>
101+
<groupId>org.junit.vintage</groupId>
102+
<artifactId>junit-vintage-engine</artifactId>
103+
<version>${junit.jupiter.version}</version>
104+
<scope>test</scope>
105+
</dependency>
106+
<dependency>
107+
<groupId>org.mockito</groupId>
108+
<artifactId>mockito-all</artifactId>
109+
<version>1.9.5</version>
110+
<scope>test</scope>
111+
</dependency>
88112
</dependencies>
89113

90114
<parent>

0 commit comments

Comments
 (0)