https://github.com/andbin/javase-gui-demos
A set of GUI (Swing) demos for the JavaSE Platform
https://github.com/andbin/javase-gui-demos
Last synced: 7 months ago
JSON representation
A set of GUI (Swing) demos for the JavaSE Platform
- Host: GitHub
- URL: https://github.com/andbin/javase-gui-demos
- Owner: andbin
- License: mit-0
- Created: 2024-08-06T13:30:02.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-08-09T09:00:18.000Z (almost 2 years ago)
- Last Synced: 2024-12-28T19:49:23.021Z (over 1 year ago)
- Language: Java
- Homepage:
- Size: 9.77 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# JavaSE GUI Demos
This project contains a set of simple GUI (Swing) demos for the JavaSE Platform. Each demo is entirely standalone and separated from the other demos. There is also a main application that acts as a “launcher” for all the demos.
## License
This project is released under the **MIT No Attribution License**, a very *permissive* free software license.
See the full text of the license: **[LICENSE.txt](LICENSE.txt)**
## How to build and run
This project requires a **Java 8** (or higher) runtime. To build the project, you also need [**Apache Maven**](https://maven.apache.org).
You can build and run the application in different ways (depending on your environment and/or IDE):
**Option 1)** From the command line (in the project’s main directory):
* run `mvn compile exec:java`
**Option 2)** From the command line (in the project’s main directory):
* run `mvn package`
* go into the `target` directory
* run `java -jar javase-gui-demos.jar`
**Option 3)** From your preferred IDE (e.g., Eclipse or IntelliJ IDEA):
* import this project as a “Maven project” and ensure it is compiled
* launch the `guidemos.DemosLauncherApplication` class