Skip to content

Instantly share code, notes, and snippets.

@aalmiray
Created June 26, 2014 15:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aalmiray/350e8886ae0b73078e6b to your computer and use it in GitHub Desktop.
Save aalmiray/350e8886ae0b73078e6b to your computer and use it in GitHub Desktop.
Resolving griffon plugins from BOM files
dependencies {
griffonPlugin 'org.codehaus.griffon.plugins:griffon-datasource-plugin:1.0.0.BETA'
compile "org.codehaus.griffon:griffon-swing:$griffonVersion"
compile "org.codehaus.griffon:griffon-guice:$griffonVersion"
runtime('log4j:log4j:1.2.17') {
exclude group: 'ant', module: 'ant-nodeps'
exclude group: 'ant', module: 'ant-junit'
exclude group: 'ant-contrib', module: 'ant-contrib'
}
runtime 'org.slf4j:slf4j-log4j12:1.7.7'
testCompile "org.codehaus.griffon:griffon-fest-test:$griffonVersion"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment