com.offbytwo.jenkins.model.MavenBuild Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jenkins-client Show documentation
Show all versions of jenkins-client Show documentation
A Jenkins API client for Java
package com.offbytwo.jenkins.model;
import java.io.IOException;
public class MavenBuild extends Build {
public MavenBuild() {}
public MavenBuild(Build from) {
this(from.getNumber(), from.getUrl());
}
public MavenBuild(int number, String url) {
super(number, url);
}
public MavenModule getMavenModule() throws IOException {
return client.get(this.url + "/mavenArtifacts/", MavenModule.class);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy