我正在尝试找到提供软件包的工具:
com.atlassian.bitbucket.util.PageUtils;
com.atlassian.bitbucket.util.PagedIterable;
我看过:
答案 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>