You can download jenkins-client-0.3.7.jar in this page.
MIT License
jenkins-client-0.3.7.jar file has the following types.
META-INF/MANIFEST.MF META-INF/maven/com.offbytwo.jenkins/jenkins-client/pom.properties META-INF/maven/com.offbytwo.jenkins/jenkins-client/pom.xml com.offbytwo.jenkins.JenkinsServer.class com.offbytwo.jenkins.JenkinsTriggerHelper.class com.offbytwo.jenkins.client.JenkinsHttpClient.class com.offbytwo.jenkins.client.PreemptiveAuth.class com.offbytwo.jenkins.client.util.EncodingUtils.class com.offbytwo.jenkins.client.util.RequestReleasingInputStream.class com.offbytwo.jenkins.client.validator.HttpResponseValidator.class com.offbytwo.jenkins.helper.ComparableVersion.class com.offbytwo.jenkins.helper.JenkinsVersion.class com.offbytwo.jenkins.helper.Range.class com.offbytwo.jenkins.model.AllBuilds.class com.offbytwo.jenkins.model.AllMavenBuilds.class com.offbytwo.jenkins.model.Artifact.class com.offbytwo.jenkins.model.BaseModel.class com.offbytwo.jenkins.model.Build.class com.offbytwo.jenkins.model.BuildCause.class com.offbytwo.jenkins.model.BuildChangeSet.class com.offbytwo.jenkins.model.BuildChangeSetAuthor.class com.offbytwo.jenkins.model.BuildChangeSetItem.class com.offbytwo.jenkins.model.BuildChangeSetPath.class com.offbytwo.jenkins.model.BuildResult.class com.offbytwo.jenkins.model.BuildWithDetails.class com.offbytwo.jenkins.model.CauseAction.class com.offbytwo.jenkins.model.Computer.class com.offbytwo.jenkins.model.ComputerSet.class com.offbytwo.jenkins.model.ComputerWithDetails.class com.offbytwo.jenkins.model.Crumb.class com.offbytwo.jenkins.model.Executable.class com.offbytwo.jenkins.model.Executor.class com.offbytwo.jenkins.model.ExtractHeader.class com.offbytwo.jenkins.model.FolderJob.class com.offbytwo.jenkins.model.HourMinSec10.class com.offbytwo.jenkins.model.Job.class com.offbytwo.jenkins.model.JobConfiguration.class com.offbytwo.jenkins.model.JobWithDetails.class com.offbytwo.jenkins.model.LabelWithDetails.class com.offbytwo.jenkins.model.LoadStatistics.class com.offbytwo.jenkins.model.MainView.class com.offbytwo.jenkins.model.MavenArtifact.class com.offbytwo.jenkins.model.MavenBuild.class com.offbytwo.jenkins.model.MavenJob.class com.offbytwo.jenkins.model.MavenJobWithDetails.class com.offbytwo.jenkins.model.MavenModule.class com.offbytwo.jenkins.model.MavenModuleRecord.class com.offbytwo.jenkins.model.OfflineCause.class com.offbytwo.jenkins.model.ParameterDefinitions.class com.offbytwo.jenkins.model.ParametersDefinitionProperty.class com.offbytwo.jenkins.model.Plugin.class com.offbytwo.jenkins.model.PluginDependency.class com.offbytwo.jenkins.model.PluginManager.class com.offbytwo.jenkins.model.Queue.class com.offbytwo.jenkins.model.QueueItem.class com.offbytwo.jenkins.model.QueueItemActions.class com.offbytwo.jenkins.model.QueueReference.class com.offbytwo.jenkins.model.QueueTask.class com.offbytwo.jenkins.model.Statis.class com.offbytwo.jenkins.model.StringParameterDefinition.class com.offbytwo.jenkins.model.TestCase.class com.offbytwo.jenkins.model.TestChild.class com.offbytwo.jenkins.model.TestChildReport.class com.offbytwo.jenkins.model.TestReport.class com.offbytwo.jenkins.model.TestResult.class com.offbytwo.jenkins.model.TestSuites.class com.offbytwo.jenkins.model.View.class
jenkins-client-0.3.7.pom file content.
<?xml version="1.0" encoding="UTF-8"?> <!-- ~ Copyright (c) 2013 Cosmin Stejerean, Karl Heinz Marbaise, and contributors. ~ ~ Distributed under the MIT license: http://opensource.org/licenses/MIT --> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>com.offbytwo.jenkins</groupId> <artifactId>jenkins-client-parent</artifactId> <version>0.3.7</version> </parent> <artifactId>jenkins-client</artifactId> <name>Jenkins API client for Java :: The Client.</name> <dependencies> <!-- Marshalling --> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-annotations</artifactId> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-core</artifactId> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> </dependency> <dependency> <groupId>dom4j</groupId> <artifactId>dom4j</artifactId> </dependency> <dependency> <groupId>org.jvnet.hudson</groupId> <artifactId>xstream</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>net.sf.json-lib</groupId> <artifactId>json-lib</artifactId> <classifier>jdk15</classifier> </dependency> <!-- Musties --> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> </dependency> <dependency> <groupId>commons-lang</groupId> <artifactId>commons-lang</artifactId> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> </dependency> <dependency> <groupId>jaxen</groupId> <artifactId>jaxen</artifactId> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> <!-- Testing --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.jenkins-ci.main</groupId> <artifactId>jenkins-test-harness</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>xml-apis</groupId> <artifactId>xml-apis</artifactId> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-shade-plugin</artifactId> <executions> <execution> <id>stash</id> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <artifactSet> <includes> <include>com.google.guava:guava</include> </includes> </artifactSet> <shadedArtifactAttached>true</shadedArtifactAttached> <shadedClassifierName>stash</shadedClassifierName> <relocations> <relocation> <pattern>com.google.common</pattern> <shadedPattern>com.google.common.jenkins_client_jarjar</shadedPattern> </relocation> </relocations> </configuration> </execution> <execution> <id>httpclient</id> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <artifactSet> <includes> <include>org.apache.httpcomponents:httpclient</include> <include>org.apache.httpcomponents:httpcore</include> </includes> </artifactSet> <shadedArtifactAttached>true</shadedArtifactAttached> <shadedClassifierName>apachehttp</shadedClassifierName> <relocations> <relocation> <pattern>com.google.common</pattern> <shadedPattern>com.google.common.jenkins_client_jarjar</shadedPattern> </relocation> </relocations> </configuration> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>run-its</id> <build> <plugins> <plugin> <artifactId>maven-failsafe-plugin</artifactId> <executions> <execution> <id>integration-test</id> <goals> <goal>integration-test</goal> <goal>verify</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>
<dependency> <groupId>com.offbytwo.jenkins</groupId> <artifactId>jenkins-client</artifactId> <version>0.3.7</version> </dependency>
If you think the following jenkins-client-0.3.7.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.
Download jenkins-client-0.3.7.jar file