Search code examples
bitbucketbitbucket-serverbitbucket-api

What provides PageUtils and PagedIterable for the Bitbucket API?


I am trying to find what provides the packages:

com.atlassian.bitbucket.util.PageUtils;
com.atlassian.bitbucket.util.PagedIterable;

I have looked in:

Bitbucket API

Bitbucket SCM Common

Bitbucket SPI


Solution

  • 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>