什么为Bitbucket API提供PageUtils和PagedIterable?

问题描述 投票:0回答:1

我试图找到提供包的内容:

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

我查了一下:

Bitbucket API

Bitbucket SCM Common

Bitbucket SPI

bitbucket bitbucket-server bitbucket-api
1个回答
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>
© www.soinside.com 2019 - 2024. All rights reserved.