什么为Bitbucket API提供PageUtils和PagedIterable?

时间:2019-04-11 08:09:58

标签: bitbucket bitbucket-server bitbucket-api

我正在尝试找到提供软件包的工具:

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

我看过:

Bitbucket API

Bitbucket SCM Common

Bitbucket SPI

1 个答案:

答案 0 :(得分:1)

PageUtils类是bitbucket-util jar的一部分。 https://packages.atlassian.com/maven-external/com/atlassian/bitbucket/server/bitbucket-util/ 只需添加一个依赖项

  <dependency>
      <groupId>com.atlassian.bitbucket.server</groupId>
      <artifactId>bitbucket-util</artifactId>
      <scope>provided</scope>
  </dependency>