VWorkflows available via Maven Repo
VWorfklow snapshots are now available via the Sonatype OSS Maven Repository:
VWorfklow consists of two projects:
vworkflows-core: the backend (flow model, io etc.)vworkflows-fx: the JavaFX UI (other UI bindings can be implemented as well)
Gradle
Here is an example on how to add it as dependency to a gradle project:
repositories {
mavenCentral()
maven {
url "https://oss.sonatype.org/content/repositories/snapshots"
}
}
How to add VWorkflows-FX as dependency:
dependencies {
compile "eu.mihosoft.vrl.workflow:vworkflows-fx:0.1-SNAPSHOT"
}
How to add VWorkflows-Core as dependency:
dependencies {
compile "eu.mihosoft.vrl.workflow:vworkflows-core:0.1-SNAPSHOT"
}
Maven
For maven users:
group-id: eu.mihosoft.vrl.workflow
artifact-id: vworkflows-core
version: 0.1-SNAPSHOT
group-id: eu.mihosoft.vrl.workflow
artifact-id: vworkflows-fx
version: 0.1-SNAPSHOT
The next tutorials which will be finished soon (hopefully) won’t contain VWorkflows-*.jar files anymore. The will be using the snapshots via maven dependencies.
Stay tuned and follow me on Twitter
Leave a Reply