JavaFX application for drawing.
- Java 11
JAVA_HOME
path variable
.
├── application # Main application module
├── logic # Business logic
├── ui # View logic
├── util # Utilites classes
├── gradle # Gradle wrapper folder
├── build.gradle # General gradle settings and tasks
├── settings.gradle # List of project modules
├── gradlew # Executable file for running project on UNIX platforms
├── gradlew.bat # Executable file for running project on Windows
└── ...
Run app with gradle
- On UNIX :
./gradlew run
- On Windows :
gradlew run