2026-02-27 12:07:00 +01:00
|
|
|
# VacCalc
|
|
|
|
|
|
|
|
|
|
## Building
|
|
|
|
|
|
|
|
|
|
### Prerequisites
|
|
|
|
|
|
|
|
|
|
- Java 11 or higher
|
|
|
|
|
- Maven 3.6 or higher
|
|
|
|
|
|
|
|
|
|
### Compile
|
|
|
|
|
|
|
|
|
|
```bash
|
|
|
|
|
mvn clean compile
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
### Package
|
|
|
|
|
|
|
|
|
|
```bash
|
|
|
|
|
mvn package
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
### Run
|
|
|
|
|
|
|
|
|
|
Using Maven:
|
|
|
|
|
|
|
|
|
|
```bash
|
2026-02-28 21:58:06 +01:00
|
|
|
mvn exec:java
|
2026-02-27 12:07:00 +01:00
|
|
|
```
|
|
|
|
|
|
|
|
|
|
Using Java directly:
|
|
|
|
|
|
|
|
|
|
```bash
|
|
|
|
|
java -jar target/vaccalc-1.0.0.jar
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
## License
|
|
|
|
|
|
|
|
|
|
This project is licensed under the Zlib license. See the [license](LICENSE)
|
|
|
|
|
file for more information.
|