Hi all,
I am building my webapp using maven. i will be integrating my app with YAWL. what is the maven dependency for yawl libs?

christian@frei…

Mon, 05/05/2014 - 16:18

There is no official maven repository for YAWL. The easiest way would be to integrate it via a relative path e.g.:
<dependency>
<groupId>org.yawlfoundation.yawl</groupId>
<artifactId>yawlStandalone</artifactId>
<version>2.3.5</version>
<scope>system</scope>
<systemPath>${basedir}/../libs/YAWL_Standalone_2.3.5.jar</systemPath>
</dependency>
This should be enough for some smaller developments. A more elegant way would be to set up Your own repository and adding the standalone.jar there.