Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/xzel23/fxbrowser
a simple JavaFX based browser that I use for testing the WebView control
https://github.com/xzel23/fxbrowser
Last synced: 8 days ago
JSON representation
a simple JavaFX based browser that I use for testing the WebView control
- Host: GitHub
- URL: https://github.com/xzel23/fxbrowser
- Owner: xzel23
- Created: 2018-01-25T10:56:28.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2023-12-08T11:16:10.000Z (about 1 year ago)
- Last Synced: 2024-12-12T06:50:23.174Z (11 days ago)
- Language: Java
- Size: 286 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# fxbrowser
A simple JavaFX based webbrowser that I use for testing the WebView control and also as a test project for my [gradle plugin](https://github.com/xzel23/JpmsGradlePlugin).
## Building and running the project
* clone the project
```
git clone https://github.com/xzel23/fxbrowser.git
```* run gradle, the `jlink` task produces a standalone application
```
cd fxbrowser
./gradlew jlink
```* after building, start the program
```
./build/dist/bin/fxbrowser
```* run gradle, the `bundle` task produces an appliction image (depends on your platform)
```
cd fxbrowser
./gradlew bundle
```