Skip to content

Commit cf9d137

Browse files
committed
adds tck column test
1 parent cd95d4c commit cf9d137

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

cassandra-driver/pom.xml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,5 +51,26 @@
5151
<artifactId>java-driver-query-builder</artifactId>
5252
<version>${casandra.driver.version}</version>
5353
</dependency>
54+
<dependency>
55+
<groupId>jakarta.nosql.tck.communication.driver</groupId>
56+
<artifactId>driver-tck-column</artifactId>
57+
<version>${jakarta.nosql.version}</version>
58+
<scope>test</scope>
59+
</dependency>
5460
</dependencies>
61+
62+
<build>
63+
<plugins>
64+
<plugin>
65+
<groupId>org.apache.maven.plugins</groupId>
66+
<artifactId>maven-surefire-plugin</artifactId>
67+
<version>${maven.surefire.plugin.version}</version>
68+
<configuration>
69+
<dependenciesToScan>
70+
<dependency>jakarta.nosql.tck.communication.driver:driver-tck-column</dependency>
71+
</dependenciesToScan>
72+
</configuration>
73+
</plugin>
74+
</plugins>
75+
</build>
5576
</project>

0 commit comments

Comments
 (0)