0

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

eeijlar
  • 1,232
  • 3
  • 20
  • 53

1 Answers1

1

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>
Yuri G.
  • 4,323
  • 1
  • 17
  • 32