Created
February 25, 2016 13:44
-
-
Save childnode/275dced0705b61381626 to your computer and use it in GitHub Desktop.
gradle idea plugin workaround for dir-based configuration #2
This file contains hidden or 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
sourceCompatibility = JavaVersion.VERSION_1_8 | |
// !! HAVE TO BE SET AFTER project.sourceCompatibility | |
idea { | |
project { | |
// explicit set to sourceCompatibility since default is JVM level that runs gradle | |
jdkName = project.sourceCompatibility | |
outputFile = new File('.idea/modules.xml') | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
see #1 in ⬅️ https://gist.github.com/childnode/12757be70b2895a1eed0
but: not seems to work either