jchess-uci
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.fathzer</groupId>
<artifactId>jchess-uci</artifactId>
<version>2.0.0</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>jchess-uci</artifactId> <version>2.0.0</version> <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> <sonar.coverage.exclusions>src/main/java/com/fathzer/jchess/uci/ConsoleLineReader.java</sonar.coverage.exclusions> </properties> <dependencies> <dependency> <groupId>com.fathzer</groupId> <artifactId>games-core</artifactId> <version>0.0.1</version> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <version>5.11.3</version> <scope>test</scope> </dependency> <dependency> <groupId>org.awaitility</groupId> <artifactId>awaitility</artifactId> <version>4.2.2</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-junit-jupiter</artifactId> <version>5.14.2</version> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>2.0.17</version> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <version>2.0.17</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-enforcer-plugin</artifactId> </plugin> </plugins> </build> </project>