Ignore _2 package in builds

This commit is contained in:
Banks Troutman
2020-03-28 18:54:26 -04:00
parent 0014a31394
commit c03ed23a98

View File

@@ -102,6 +102,15 @@ dependencies {
testImplementation('org.junit.jupiter:junit-jupiter:5.6.0')
}
sourceSets {
main {
java {
srcDir 'src'
exclude '**/_2/**'
}
}
}
test {
test {
useJUnitPlatform()