A simple game of Battleship, written in Java.
This project requires a Java JDK 8 or higher. To prepare to work with it, pick one of these options:
Run battleship with Gradle
./gradlew runExecute tests with Gradle
./gradlew testIf you don't want to install anything Java-related on your system, you can run the game inside Docker instead.
docker run -it -v ${PWD}:/battleship -w /battleship openjdk:15 bashThis will run a Docker container with your battleship case study mounted into it. The container will run in interactive mode and you can execute Gradle commands from the shell (see examples below).
If you are using Docker for Windows you might run into issues and get a message like
env: ‘sh\r’: No such file or directoryThe reason for this is that Windows uses CRLF while Linux (in the Docker Container) uses only CR You can solve the issue by cloning the repository with a specific parameter:
git clone https://github.com/proscrumdev/battleship-java.git --config core.autocrlf=input./gradlew run./gradlew test