Created
January 14, 2015 23:19
-
-
Save li-salvadorlopez/7327876abd76a41640db to your computer and use it in GitHub Desktop.
Gradle custom project layout
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
| apply plugin: "war" | |
| project.webAppDirName = 'WebContent' | |
| repositories { | |
| flatDir { dirs "WebContent/WEB-INF/lib" } | |
| mavenCentral() | |
| } | |
| dependencies { | |
| compile fileTree(dir: "WebContent/WEB-INF/lib", include: '*.jar') | |
| } | |
| sourceSets { | |
| main { | |
| java { | |
| srcDir 'src' | |
| } | |
| resources { | |
| srcDir 'Resources' | |
| } | |
| } | |
| } | |
| task wrapper(type: Wrapper) { | |
| gradleVersion = '2.2.1' | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment