I am trying to find what provides the packages:
com.atlassian.bitbucket.util.PageUtils;
com.atlassian.bitbucket.util.PagedIterable;
I have looked in:
The PageUtils
class is part of bitbucket-util
jar. https://packages.atlassian.com/maven-external/com/atlassian/bitbucket/server/bitbucket-util/
Just add a dependency
<dependency>
<groupId>com.atlassian.bitbucket.server</groupId>
<artifactId>bitbucket-util</artifactId>
<scope>provided</scope>
</dependency>