- Java Development Kit (JDK) 17 or higher
- Maven
- Docker (optional, for running in a containerized environment)
To use the source code directly, follow these steps:
- Ensure you have all prerequisites installed.
- Clone the repository:
git clone https://github.com/kirbylink/java-keep-a-changelog-updater.git cd java-keep-a-changelog-updater
- Build the project using Maven:
Or to skip the tests during the build:
mvn clean verify
mvn clean package -Dmaven.test.skip=true
- Run the application:
java -jar target/keep-a-changelog-updater-2.0.3-jar-with-dependencies.jar
To build the Docker image, you can use the provided Dockerfile
in the root directory of the project. Run the following command to build the image:
docker build -t java-keep-a-changelog-updater .