Skip to content

Commit

Permalink
Consolidate source dirs for ease of browsing
Browse files Browse the repository at this point in the history
  • Loading branch information
cbeams committed Feb 11, 2011
1 parent b37c4c1 commit 51ca012
Show file tree
Hide file tree
Showing 26 changed files with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,18 @@ dependencies {
sourceCompatibility = 1.6
targetCompatibility = 1.6

// consolidate source directories for ease of browsing
sourceSets {
main {
java { srcDir 'src/main' }
resources { srcDir 'src/main' }
}
test {
java { srcDir 'src/test' }
resources { srcDir 'src/test' }
}
}

task wrapper(type: Wrapper) {
group = 'Admin'
description = "Generates gradlew and gradlew.bat bootstrap scripts"
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 51ca012

Please sign in to comment.