Skip to content

Commit 170c87b

Browse files
committed
chore: include mongodb tck driver
Signed-off-by: Otavio Santana <[email protected]>
1 parent a5a9019 commit 170c87b

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

jnosql-mongodb/pom.xml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828

2929
<properties>
3030
<monbodb.driver>5.1.0</monbodb.driver>
31+
<jakarta.nosql.version>1.0.0-SNAPSHOT</jakarta.nosql.version>
3132
</properties>
3233
<dependencies>
3334
<dependency>
@@ -44,6 +45,27 @@
4445
<artifactId>mongodb-driver-sync</artifactId>
4546
<version>${monbodb.driver}</version>
4647
</dependency>
48+
<dependency>
49+
<groupId>jakarta.nosql</groupId>
50+
<artifactId>jakarta.nosql-tck</artifactId>
51+
<version>${jakarta.nosql.version}</version>
52+
<scope>test</scope>
53+
</dependency>
4754
</dependencies>
4855

56+
<build>
57+
<plugins>
58+
<plugin>
59+
<groupId>org.apache.maven.plugins</groupId>
60+
<artifactId>maven-surefire-plugin</artifactId>
61+
<version>${maven.surefire.plugin.version}</version>
62+
<configuration>
63+
<dependenciesToScan>
64+
<dependency>jakarta.nosql:jakarta.nosql-tck</dependency>
65+
</dependenciesToScan>
66+
</configuration>
67+
</plugin>
68+
</plugins>
69+
</build>
70+
4971
</project>

0 commit comments

Comments
 (0)