-
Notifications
You must be signed in to change notification settings - Fork 65
Create gui commandlet #1724
Copy link
Copy link
Labels
GUIGraphical User Interface of IDEasy (aka dashboard) build with JavaFxGraphical User Interface of IDEasy (aka dashboard) build with JavaFxenhancementNew feature or requestNew feature or requestready-to-implement
Milestone
Metadata
Metadata
Assignees
Labels
GUIGraphical User Interface of IDEasy (aka dashboard) build with JavaFxGraphical User Interface of IDEasy (aka dashboard) build with JavaFxenhancementNew feature or requestNew feature or requestready-to-implement
Type
Projects
Status
✅ Done
Feature idea
As an IDEasy user, I want to have a simple commandlet to launch the dashboard.
For UX the most intuitive command would actually be
this is shorter and IMHO more intuitive than
ide dashboard.Additional context
The commandlet should extend
MvnBasedLocalToolCommandletand viadependencies.jsonwe should configure all versions to havejava 25as dependency.Then we can run the gui via
java -jar ....What remains as a challenge is that we need all the dependencies of it.
To solve this in a generic way, we should use maven for that (download dependencies via POM, run via POM - maybe via
mvn exec:java).Code for that can be implemented in
MvnBasedLocalToolCommandletso it can be reused by other such commandlets later.