Moved collectionsindepth to moreaboutcollections

This commit is contained in:
Bruce Eckel 2016-12-29 17:43:16 -08:00
parent 6d4d5a1dfc
commit 9905ed2551
2 changed files with 3 additions and 3 deletions

View File

@ -34,7 +34,7 @@ junitPlatform {
filters {
packages {
exclude 'understandingcollections.jmh'
exclude 'moreaboutcollections.jmh'
}
includeClassNamePattern '.*'
}

View File

@ -4,13 +4,13 @@ project(':validating') {
}
}
project(':understandingcollections') {
project(':moreaboutcollections') {
dependencies {
compile project(':typeinfo')
compile project(':collections')
}
jmh {
include = 'understandingcollections.jmh.*'
include = 'moreaboutcollections.jmh.*'
}
}