Last active
August 29, 2015 14:18
-
-
Save AbrarSyed/bc6a2bf98e2dd2f5cf41 to your computer and use it in GitHub Desktop.
Put this in ~/.gradle/init.d
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
afterEvaluate { | |
allprojects { project -> | |
if (project.plugins.hasPlugin("idea")) | |
{ | |
idea { module { inheritOutputDirs = true } } | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment