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 { filters {
packages { packages {
exclude 'understandingcollections.jmh' exclude 'moreaboutcollections.jmh'
} }
includeClassNamePattern '.*' includeClassNamePattern '.*'
} }

View File

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