2 Installation - Reference Documentation
Authors: Diego Toharia
Version: 0.4
2 Installation
Install as a plugin
You can add the plugin to your project as a dependency by editing your project's BuildConfig.groovy as the following:plugins {
// specify dependencies here under either 'build', 'compile', 'runtime', 'test' or 'provided' scopes e.g.
…
compile 'timestamped:0.4'
}Install as a maven dependency
You can add the plugin as a precompiled maven dependency by editing your project's BuildConfig.groovy as the following:repositories {
…
mavenRepo 'http://deigote.github.io/grails-timestamped/maven/releases/'
grailsPlugins()
}
…
dependencies {
…
compile 'com.deigote.grails-plugins:timestamped:0.4'
}