Skip to content

Instantly share code, notes, and snippets.

@ben-manes
Created December 10, 2012 06:02
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 ben-manes/4248735 to your computer and use it in GitHub Desktop.
Save ben-manes/4248735 to your computer and use it in GitHub Desktop.
WebDriverTestingTemplate fatJar
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'eu.appsatori:gradle-fatjar-plugin:0.2-rc1'
}
}
apply plugin: 'fatjar'
project(':core:bing') {
dependencies {
compile project(':core:google')
}
}
dependencies {
compile project(':core')
compile project(':core:bing')
compile project(':core:google')
}
@djangofan
Copy link

Ok, I will try this. If I can get it to work, I will fork this code with the final answer.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment