Created
December 10, 2012 06:02
-
-
Save ben-manes/4248735 to your computer and use it in GitHub Desktop.
WebDriverTestingTemplate fatJar
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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') | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Ok, I will try this. If I can get it to work, I will fork this code with the final answer.