https://github.com/hansolo/gettingstarted
A little project that shows how to use Charts or TilesFX in JDK17
https://github.com/hansolo/gettingstarted
Last synced: 10 months ago
JSON representation
A little project that shows how to use Charts or TilesFX in JDK17
- Host: GitHub
- URL: https://github.com/hansolo/gettingstarted
- Owner: HanSolo
- Created: 2022-01-28T08:32:17.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-01-28T08:43:02.000Z (over 4 years ago)
- Last Synced: 2024-11-08T19:47:44.495Z (over 1 year ago)
- Language: Java
- Size: 63.5 KB
- Stars: 4
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Getting started
A little demo project which shows how to use libraries like
[Charts](https://github.com/HanSolo/charts/tree/jdk17)
[TilesFX](https://github.com/HanSolo/tilesfx/tree/jdk17)
in combination with JDK 17
Please take a look at the [build.gradle](https://github.com/HanSolo/gettingstarted/blob/main/build.gradle) file to see which imports are needed for
those libraries.
And in addition please also take a look at the [module-info.java](https://github.com/HanSolo/gettingstarted/blob/main/src/main/java/module-info.java) file which contains the
required modules for each library;
For each library you will find a separate package with a demo class that shows
how to make use of the library:
- Charts : [eu.hansolo.fx.gettingstarted.charts.DemoCharts](https://github.com/HanSolo/gettingstarted/blob/main/src/main/java/eu/hansolo/fx/gettingstarted/charts/DemoCharts.java)
- TilesFX: [eu.hansolo.fx.gettingstarted.tilesfx.DemoTilesFX](https://github.com/HanSolo/gettingstarted/blob/main/src/main/java/eu/hansolo/fx/gettingstarted/tilesfx/DemoTilesFX.java)
Both demos can be started using the gradle wrapper from the command line as follows:
- Charts : ```./gradlew DemoCharts```
- TilesFX: ```/gradlew DemoTilesFX```