Resolve wffweb dependency in build tools
			Apache Buildr
				'com.webfirmframework:wffweb:jar:3.0.20'
				
				Gradle Grails
				compile 'com.webfirmframework:wffweb:3.0.20'
				
				Groovy Grape
				@Grapes( 
@Grab(group='com.webfirmframework', module='wffweb', version='3.0.20') 
)
				
				ivy
				<dependency org="com.webfirmframework" name="wffweb" rev="3.0.20" />
				
				Leiningen
				[com.webfirmframework/wffweb "3.0.20"]
				
				maven
				<dependencies>
    <dependency>
        <groupId>com.webfirmframework</groupId>
        <artifactId>wffweb</artifactId>
        <version>3.0.20</version>
    </dependency>
</dependencies>
				To automatically resolve with the latest version
				<dependencies>
    <dependency>
	    <groupId>com.webfirmframework</groupId>
	    <artifactId>wffweb</artifactId>
	    <version>RELEASE</version>
    </dependency>
</dependencies>