Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/scify/jedai-ui
UI for JedAI Toolkit
https://github.com/scify/jedai-ui
data-integration entity-resolution javafx jedai toolkit user-interface
Last synced: 3 months ago
JSON representation
UI for JedAI Toolkit
- Host: GitHub
- URL: https://github.com/scify/jedai-ui
- Owner: scify
- License: apache-2.0
- Created: 2017-05-08T09:15:17.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2022-05-20T17:02:30.000Z (over 2 years ago)
- Last Synced: 2024-11-07T10:14:55.122Z (3 months ago)
- Topics: data-integration, entity-resolution, javafx, jedai, toolkit, user-interface
- Language: Java
- Homepage: http://jedai.scify.org
- Size: 1.09 MB
- Stars: 16
- Watchers: 12
- Forks: 5
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# jedai-ui
UI for JedAI, an open source, high scalability toolkit that offers out-of-the-box solutions for any data integration
task, e.g., Record Linkage, Entity Resolution and Link Discovery.This project is built on [JedaiToolkit](https://github.com/scify/JedAIToolkit) project.
## Dependencies
You can run from source using any of the JDK below. But in order to run from a .jar file, you need [Oracle's](http://www.oracle.com/technetwork/java/javase/overview/java8-2100321.html) Java 8 (due to JavaFX).
Other dependencies are managed using Maven.## How to run
#### From source (any JDK)
From the CLI navigate into project's directory, then run it with:
```
$ mvn javafx:run
```#### From Jar (Oracle JDK)
From the CLI navigate into project's directory, then build it with:
```
$ mvn clean package
```You'll find the executable in `{this_project_dir}/target/jedai-ui-{version}-jar-with-dependencies.jar`. Then run it with:
```
$ java -jar target/jedai-ui-{version}-jar-with-dependencies.jar
```
If on Linux, make sure the .jar file has permissions to be executed (e.g. with `chmod +x jedai-ui.jar`) and that you are running Oracle Java 8.