Skip to content

Commit

Permalink
Merge pull request bunq#110 from bunq/bunq#109-exclude-examples-in-build
Browse files Browse the repository at this point in the history
Exclude examples and test files from build. (bunq#109)
  • Loading branch information
OGKevin authored Aug 17, 2018
2 parents b18a099 + 3771ec2 commit 4eb2482
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,17 @@ apply plugin: 'java'
apply plugin: 'maven'
sourceCompatibility = 1.7


sourceSets {
main {
java {
srcDir 'src/main/java'
exclude '**/examples/**'
exclude '**/test/**'
}
}
}

repositories {
mavenCentral()
}
Expand Down

0 comments on commit 4eb2482

Please sign in to comment.