https://github.com/willayy/auvnye
Calculator for "Aktieutspädning vid nyemission"
https://github.com/willayy/auvnye
application java javafx maven
Last synced: 3 months ago
JSON representation
Calculator for "Aktieutspädning vid nyemission"
- Host: GitHub
- URL: https://github.com/willayy/auvnye
- Owner: willayy
- Created: 2023-06-13T22:23:26.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2024-11-26T16:23:48.000Z (over 1 year ago)
- Last Synced: 2025-02-08T04:27:40.789Z (over 1 year ago)
- Topics: application, java, javafx, maven
- Language: Java
- Homepage:
- Size: 7.41 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# AUVNye
A very simple calculator for "Aktieutspädning vid nyemission" built with Maven.
#### Build
To build and run the application, run the following command in the root directory of the project. Running it without this command will result in javaFX runtime components not being added at runtime.
```
mvn clean javafx:run
```
To build the application as a standalone package (jar), run the following command in the root directory of the project
```
mvn clean package
```
Then you need to download the dependent jar files
```javafx.controls,javafx.fxml,javafx.graphics```
(or the whole javaFx sdk which is what i did) and add them on runtime with the following command
```
java --module-path path/to/your/javafx-sdk-21.0.2/lib --add-modules javafx.controls,javafx.fxml,javafx.graphics -jar auvnye-1.0.0.jar
```
#### Dependencies
JavaFX 21.0.2 (FXML included)