|
6 | 6 | <version>1.8.jdbc-SNAPSHOT</version>
|
7 | 7 | <packaging>jar</packaging>
|
8 | 8 | <properties>
|
9 |
| - <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 9 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 10 | + <junit.jupiter.version>5.3.0</junit.jupiter.version> |
10 | 11 | </properties>
|
11 | 12 | <name>Tarantool Connector for Java</name>
|
12 | 13 | <url>https://github.com/tarantool/tarantool-java</url>
|
|
24 | 25 | <connection>scm:git:git://github.com/tarantool/tarantool-java.git</connection>
|
25 | 26 | < developerConnection>scm:git: [email protected]:tarantool/tarantool-java.git</ developerConnection>
|
26 | 27 | </scm>
|
| 28 | + |
27 | 29 | <developers>
|
28 | 30 | <developer>
|
29 | 31 | <name>Dmitry Grytsovets</name>
|
|
32 | 34 | <organizationUrl>http://tarantool.org/</organizationUrl>
|
33 | 35 | </developer>
|
34 | 36 | </developers>
|
| 37 | + |
35 | 38 | <build>
|
36 | 39 | <plugins>
|
37 | 40 | <plugin>
|
|
43 | 46 | <target>1.6</target>
|
44 | 47 | </configuration>
|
45 | 48 | </plugin>
|
| 49 | + <plugin> |
| 50 | + <artifactId>maven-surefire-plugin</artifactId> |
| 51 | + <version>2.22.0</version> |
| 52 | + </plugin> |
46 | 53 | </plugins>
|
47 | 54 | </build>
|
| 55 | + |
48 | 56 | <dependencies>
|
49 | 57 | <dependency>
|
50 | 58 | <groupId>junit</groupId>
|
51 | 59 | <artifactId>junit</artifactId>
|
52 | 60 | <version>4.12</version>
|
53 | 61 | <scope>test</scope>
|
54 | 62 | </dependency>
|
| 63 | + <dependency> |
| 64 | + <groupId>org.junit.jupiter</groupId> |
| 65 | + <artifactId>junit-jupiter-api</artifactId> |
| 66 | + <version>${junit.jupiter.version}</version> |
| 67 | + <scope>test</scope> |
| 68 | + </dependency> |
| 69 | + <dependency> |
| 70 | + <groupId>org.junit.jupiter</groupId> |
| 71 | + <artifactId>junit-jupiter-engine</artifactId> |
| 72 | + <version>${junit.jupiter.version}</version> |
| 73 | + <scope>test</scope> |
| 74 | + </dependency> |
| 75 | + <dependency> |
| 76 | + <groupId>org.junit.vintage</groupId> |
| 77 | + <artifactId>junit-vintage-engine</artifactId> |
| 78 | + <version>${junit.jupiter.version}</version> |
| 79 | + <scope>test</scope> |
| 80 | + </dependency> |
| 81 | + <dependency> |
| 82 | + <groupId>org.mockito</groupId> |
| 83 | + <artifactId>mockito-all</artifactId> |
| 84 | + <version>1.9.5</version> |
| 85 | + <scope>test</scope> |
| 86 | + </dependency> |
55 | 87 | </dependencies>
|
56 | 88 |
|
57 | 89 | <parent>
|
|
0 commit comments