Skip to content

Instantly share code, notes, and snippets.

@mgoellnitz
Last active May 14, 2017 23:13
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 mgoellnitz/2b6d16ff71b78098cbc0f6159afa0e70 to your computer and use it in GitHub Desktop.
Save mgoellnitz/2b6d16ff71b78098cbc0f6159afa0e70 to your computer and use it in GitHub Desktop.
Dummy Gradle build file for git-cloned wikis from GitHub.com have decent editing from within IDE (NetBeans that is)
/*
*
* Dummy gradle file to be able to edit the wiki contents easily from within my IDE NetBeans.
*
*/
apply plugin: 'java-base'
sourceSets {
main {
resources {
srcDir '.'
exclude '*.gradle'
// exclude 'wiki.html'
}
}
}
/*
*
* Dummy gradle settings file to be able to edit project name of the wiki to show up in my IDE NetBeans.
*
*/
rootProject.name = 'Demo'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment