boot 2.x 버전 master에서 TestPropertyValues가 guava로부터 import되는 것 같습니다.
import com.google.common.collect.Streams;
public static TestPropertyValues of(Iterable<String> pairs) {
if (pairs == null) {
return empty();
}
return of(Streams.stream(pairs));
}
아마 이것은 실수 였고 jdk에서 무언가를 사용하려고했던건가요? 어쨌든 구아바는 좋지 못하고 거기에 있으면 안됩니다.