Skip to content

Commit

Permalink
QueueId missing is fixed jenkinsci#496
Browse files Browse the repository at this point in the history
  • Loading branch information
adnan1605 committed Dec 28, 2022
1 parent ddf6a85 commit e1093d4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions jenkins-client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,11 @@
<groupId>xerces</groupId>
<artifactId>xmlParserAPIs</artifactId>
</dependency>
<dependency>
<groupId>jakarta.xml.bind</groupId>
<artifactId>jakarta.xml.bind-api</artifactId>
<version>2.3.3</version>
</dependency>
</dependencies>

<build>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public Build() {
}

public Build(Build from) {
this(from.getNumber(), from.getUrl());
this(from.getNumber(), from.getQueueId(), from.getUrl());
}

public Build(int number, String url) {
Expand Down

0 comments on commit e1093d4

Please sign in to comment.