chess-test-utils
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.fathzer</groupId> <artifactId>chess-test-utils</artifactId> <version>0.0.2</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE xml><project xmlns="https://maven.apache.org/POM/4.0.0" xmlns:xsi="https://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="https://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>com.fathzer</groupId> <artifactId>parent-pom</artifactId> <version>1.0.9</version> </parent> <artifactId>chess-test-utils</artifactId> <version>0.0.2</version> <name>chess-test-utils</name> <description>Some JUnit abstract test classes to test chess related libraries.</description> <url>https://github.com/fathzer-games/chess-test-utils</url> <scm> <url>https://github.com/fathzer-games/chess-test-utils.git</url> <connection>https://github.com/fathzer-games/chess-test-utils.git</connection> </scm> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <check-dependencies-java-version>17</check-dependencies-java-version> <maven.compiler.release>17</maven.compiler.release> <sonar.organization>fathzer-games</sonar.organization> </properties> <dependencies> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <version>5.11.4</version> </dependency> <dependency> <groupId>org.junit.platform</groupId> <artifactId>junit-platform-suite</artifactId> <version>1.11.4</version> </dependency> <dependency> <groupId>com.fathzer</groupId> <artifactId>jchess-perft-dataset</artifactId> <version>2.0.0</version> </dependency> <dependency> <groupId>org.reflections</groupId> <artifactId>reflections</artifactId> <version>0.9.12</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-junit-jupiter</artifactId> <version>5.16.1</version> <scope>test</scope> </dependency> <dependency> <groupId>com.fathzer</groupId> <artifactId>jchess-core</artifactId> <version>0.0.11-SNAPSHOT</version> <scope>test</scope> </dependency> </dependencies> </project>