Skip to content

How to resolve wffweb dependency in maven pom.xml

Web Firm Framework edited this page Aug 23, 2017 · 30 revisions

Add the following code in your pom.xml file.

<dependencies>
    <dependency>
        <groupId>com.webfirmframework</groupId>
        <artifactId>wffweb</artifactId>
        <version>2.1.12</version>
    </dependency>
</dependencies>
To automatically resolve with the latest version
<dependencies>
    <dependency>
        <groupId>com.webfirmframework</groupId>
        <artifactId>wffweb</artifactId>
        <version>RELEASE</version>
    </dependency>
</dependencies>

Clone this wiki locally