Initial commit.

This commit is contained in:
2026-02-27 12:07:00 +01:00
commit 3f7a52f16e
6 changed files with 310 additions and 0 deletions

39
README.md Normal file
View File

@@ -0,0 +1,39 @@
# 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
mvn exec:java@com.calendar.CalendarApp
```
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.