Skip to content

How to resolve wffweb dependency in different build tools

Web Firm Framework edited this page Jul 25, 2016 · 21 revisions

Apache Buildr

'com.webfirmframework:wffweb:jar:1.1.3'

Gradle Grails

compile 'com.webfirmframework:wffweb:1.1.3'

Groovy Grape

@Grapes( 
@Grab(group='com.webfirmframework', module='wffweb', version='1.1.3') 
)

ivy

<dependency org="com.webfirmframework" name="wffweb" rev="1.1.3" />

Leiningen

[com.webfirmframework/wffweb "1.1.3"]

maven

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

Scala SBT

libraryDependencies += "com.webfirmframework" % "wffweb" % "1.1.3"