Minty is a chatbot developed as a greenfield Java project.
Use reminders (or remind) to view incomplete deadlines due and events starting
today through six days later. Qualifying reminders also appear at startup.
See the user guide for details.
Prerequisites: JDK 25, update Intellij to the most recent version.
- Open Intellij (if you are not in the welcome screen, click
File>Close Projectto close the existing project first) - Open the project into Intellij as follows:
- Click
Open. - Select the project directory, and click
OK. - If there are any further prompts, accept the defaults.
- Click
- Configure the project to use JDK 25 (not other versions) as explained in here.
In the same dialog, set the Project language level field to theSDK defaultoption. - Reload the Gradle project so IntelliJ downloads the JavaFX dependencies.
- Run
./gradlew runin the terminal. If the setup is correct, Minty's chat window will appear.
Warning: Keep the src\main\java folder as the root folder for Java files (i.e., don't rename those folders or move Java files to another folder outside of this folder path), as this is the default location some tools (e.g., Gradle) expect to find Java files.