games-core
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.fathzer</groupId> <artifactId>games-core</artifactId> <version>0.0.1</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.8</version> </parent> <artifactId>games-core</artifactId> <version>0.0.1</version> <name>games-core</name> <description>A core library to help implement two players games.</description> <url>https://github.com/fathzer-games/games-core</url> <scm> <url>https://github.com/fathzer-games/games-core.git</url> <connection>https://github.com/fathzer-games/games-core.git</connection> </scm> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <sonar.organization>fathzer-games</sonar.organization> <check-dependencies-java-version>17</check-dependencies-java-version> <maven.compiler.release>17</maven.compiler.release> </properties> <repositories> <repository> <id>jitpack.io</id> <url>https://jitpack.io</url> </repository> </repositories> <dependencies> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <version>5.10.2</version> <scope>test</scope> </dependency> <dependency> <groupId>com.fathzer</groupId> <artifactId>jchess-perft-dataset</artifactId> <version>2.0.0</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-junit-jupiter</artifactId> <version>5.16.0</version> <scope>test</scope> </dependency> <dependency> <groupId>com.github.bhlangonijr</groupId> <artifactId>chesslib</artifactId> <version>1.3.4</version> <scope>test</scope> </dependency> <dependency> <groupId>org.awaitility</groupId> <artifactId>awaitility</artifactId> <version>4.2.2</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>0.8.12</version> <configuration> <excludes> <!-- Exclude the PhysicalCores class from code coverage because it is too tiedly coupled with the runtime environment --> <exclude>**/PhysicalCores.class</exclude> <exclude>**/experimental/*</exclude> </excludes> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.6.3</version> <configuration> <source>8</source> <docencoding>UTF-8</docencoding> <overview>${basedir}/overview.html</overview> <header>${project.version}</header> <bottom>${project.version}</bottom> <excludePackageNames>:*.experimental</excludePackageNames> </configuration> <executions> <execution> <id>javadoc_generation</id> <phase>package</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>