-
Notifications
You must be signed in to change notification settings - Fork 216
getting started
Mahmoud Ben Hassine edited this page Oct 8, 2020
·
5 revisions
Easy Flows requires a Java 1.8+ runtime.
To build Easy Flows from sources, you need to have git and maven installed and set up.
Please follow these instructions :
$ git clone https://github.com/j-easy/easy-flows.git
$ cd easy-flows
$ mvn install
Easy Flows is a single jar file with no dependencies except SFL4J. You have to add the easy-flows-0.3.jar file to your application's classpath.
If you use maven, add the following dependency to your pom.xml :
<dependency>
<groupId>org.jeasy</groupId>
<artifactId>easy-flows</artifactId>
<version>0.3</version>
</dependency>
To use the current snapshot version 0.4-SNAPSHOT
, you need to declare sonatype's snapshot repository in your pom.xml
:
<repositories>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</repository>
<repositories>
or download the jar directly from sonatype's repository.
-
Introduction
-
User guide
-
Get involved