Skip to content

Commit 02efdcc

Browse files
committed
Updated readme to point to release artifcat instead of building from source.
1 parent 6c2144e commit 02efdcc

File tree

1 file changed

+9
-13
lines changed

1 file changed

+9
-13
lines changed

README.md

Lines changed: 9 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -21,19 +21,15 @@ There are few blogs on how to use Spring to have a simple sequential workflow. B
2121
* [Papyrus](https://eclipse.org/papyrus/) eclipse plug-in for defining the workflow using UML activity diagram.
2222

2323
## Adding the library reference
24-
Currently, the library needs to be built manually.
25-
26-
* Download the source.
27-
* Make sure you have [maven](https://maven.apache.org/) installed.
28-
* Build the project using the command: *mvn install*
29-
* Create a new maven project and add following dependency
30-
```xml
31-
<dependency>
32-
<groupId>org.expedientframework.workflowlite</groupId>
33-
<artifactId>workflow-lite-core</artifactId>
34-
<version>0.0.1-SNAPSHOT</version>
35-
</dependency>
36-
```
24+
Add the maven dependency to your pom.xml as follows.
25+
26+
```xml
27+
<dependency>
28+
<groupId>org.expedientframework.workflowlite</groupId>
29+
<artifactId>workflow-lite-core</artifactId>
30+
<version>1.0.0</version>
31+
</dependency>
32+
```
3733

3834
## Use case - Student score card preparation
3935
We will define a workflow to calculate the score for a given student. The workflow will take a student object as input and have following actions:

0 commit comments

Comments
 (0)