Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@

<indy.version>3.4.5</indy.version>

<pnc.version>3.4.5</pnc.version>
<pnc.version>3.5.0</pnc.version>
<pnc-api.version>3.5.0</pnc-api.version>
<pnc-common.version>3.5.0</pnc-common.version>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
import jakarta.validation.constraints.Min;
import org.jboss.pnc.api.causeway.dto.push.BuildPushCompleted;
import org.jboss.pnc.dto.Artifact;
import org.jboss.pnc.dto.Attachment;
import org.jboss.pnc.dto.Build;
import org.jboss.pnc.dto.BuildConfigurationRevision;
import org.jboss.pnc.dto.BuildPushOperation;
Expand Down Expand Up @@ -169,6 +170,11 @@ public SSHCredentials getSshCredentials(String id) {
throw new UnsupportedOperationException("Not yet implemented in mock.");
}

@Override
public Page<Attachment> getAttachments(String id, @Valid PageParameters pageParameters) {
throw new UnsupportedOperationException("Not yet implemented in mock.");
}

@Override
public RunningBuildCount getCount() {
throw new UnsupportedOperationException("Not yet implemented in mock.");
Expand Down
Loading