Download jenkins-client-0.3.1.jar file

Introduction

You can download jenkins-client-0.3.1.jar in this page.

License

MIT License

Type List

jenkins-client-0.3.1.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.client.JenkinsHttpClient.class
com.offbytwo.jenkins.client.PreemptiveAuth.class
com.offbytwo.jenkins.client.util.RequestReleasingInputStream.class
com.offbytwo.jenkins.client.validator.HttpResponseValidator.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.Computer.class
com.offbytwo.jenkins.model.ComputerSet.class
com.offbytwo.jenkins.model.ComputerWithDetails.class
com.offbytwo.jenkins.model.Crumb.class
com.offbytwo.jenkins.model.Executor.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.ParameterDefinitions.class
com.offbytwo.jenkins.model.ParametersDefinitionProperty.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

Pom

jenkins-client-0.3.1.pom file content.

<?xml version="1.0" encoding="UTF-8"?>
<!--
  ~ Copyright (c) 2013 Rising Oak LLC.
  ~
  ~ 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>

    <name>Jenkins Client</name>
    <url>http://github.com/RisingOak/jenkins-client</url>
    <description>A Jenkins API client for Java</description>

    <groupId>com.offbytwo.jenkins</groupId>
    <artifactId>jenkins-client</artifactId>
    <version>0.3.1</version>

    <parent>
        <groupId>org.sonatype.oss</groupId>
        <artifactId>oss-parent</artifactId>
        <version>7</version>
    </parent>

    <scm>
        <connection>scm:git:git@github.com:RisingOak/jenkins-client.git</connection>
        <developerConnection>scm:git:git@github.com:RisingOak/jenkins-client.git</developerConnection>
        <url>https://github.com/RisingOak/jenkins-client</url>
      <tag>jenkins-client-0.3.1</tag>
  </scm>
    <distributionManagement>
      <site>
        <id>github</id>
        <url>scm:git:git@github.com:RisingOak/jenkins-client.git</url>
      </site>
    </distributionManagement>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
        <maven.compiler.source>1.6</maven.compiler.source>
        <maven.compiler.target>1.6</maven.compiler.target>

        <!-- Version of Jenkins to use for Integration Tests -->
        <jenkins-version>1.593</jenkins-version>
        <junit.version>4.11</junit.version>
        <mockito-core.version>1.9.5</mockito-core.version>
        <commons-io.version>2.4</commons-io.version>
        <xstream.version>1.4.7-jenkins-1</xstream.version>
        <dom4j.version>1.6.1</dom4j.version>
        <commons-lang.version>2.6</commons-lang.version>
        <guava.version>17.0</guava.version>
        <httpclient.version>4.3.6</httpclient.version>
        <jackson-databind.version>2.3.4</jackson-databind.version>
    </properties>

    <licenses>
        <license>
            <name>MIT License</name>
            <url>http://opensource.org/licenses/MIT</url>
        </license>
    </licenses>

    <developers>
        <developer>
            <name>Cosmin Stejerean</name>
            <email>cosmin@offbytwo.com</email>
            <url>http://offbytwo.com</url>
        </developer>
        <developer>
            <name>Karl Heinz Marbaise</name>
            <email>khmarbaise@apache.org</email>
        </developer>
    </developers>

    <dependencies>
        <!-- Marshalling -->
        <dependency>
            <groupId>com.fasterxml.jackson.core</groupId>
            <artifactId>jackson-annotations</artifactId>
            <version>${jackson-databind.version}</version>
        </dependency>
        <dependency>
            <groupId>com.fasterxml.jackson.core</groupId>
            <artifactId>jackson-core</artifactId>
            <version>${jackson-databind.version}</version>
        </dependency>

        <dependency>
            <groupId>com.fasterxml.jackson.core</groupId>
            <artifactId>jackson-databind</artifactId>
            <version>${jackson-databind.version}</version>
        </dependency>

        <dependency>
            <groupId>dom4j</groupId>
            <artifactId>dom4j</artifactId>
            <version>${dom4j.version}</version>
        </dependency>

        <dependency>
            <groupId>org.jvnet.hudson</groupId>
            <artifactId>xstream</artifactId>
            <version>${xstream.version}</version>
        </dependency>

        <!-- Musties -->
        <dependency>
            <groupId>com.google.guava</groupId>
            <artifactId>guava</artifactId>
            <version>${guava.version}</version>
        </dependency>

        <dependency>
            <groupId>commons-lang</groupId>
            <artifactId>commons-lang</artifactId>
            <version>${commons-lang.version}</version>
        </dependency>

        <dependency>
            <groupId>commons-io</groupId>
            <artifactId>commons-io</artifactId>
            <version>${commons-io.version}</version>
        </dependency>

        <dependency>
            <groupId>org.apache.httpcomponents</groupId>
            <artifactId>httpclient</artifactId>
            <version>${httpclient.version}</version>
        </dependency>

        <!-- Testing -->
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>${junit.version}</version>
            <scope>test</scope>
        </dependency>

        <dependency>
            <groupId>org.mockito</groupId>
            <artifactId>mockito-core</artifactId>
            <version>${mockito-core.version}</version>
            <scope>test</scope>
        </dependency>

        <dependency>
            <groupId>org.jenkins-ci.main</groupId>
            <artifactId>jenkins-test-harness</artifactId>
            <version>${jenkins-version}</version>
            <scope>test</scope>
        </dependency>
        <dependency>
          <groupId>org.assertj</groupId>
          <artifactId>assertj-core</artifactId>
          <version>1.7.1</version>
            <scope>test</scope>
        </dependency>
    </dependencies>

    <build>
        <pluginManagement>
          <plugins>
            <plugin>
              <groupId>org.apache.maven.plugins</groupId>
              <artifactId>maven-source-plugin</artifactId>
              <version>2.4</version>
              <executions>
                <!-- 
                  ! here we override the super-pom attach-sources execution id which 
                  ! calls sources:jar goal. That goals forks the lifecycle, 
                  ! causing the generate-sources phase to be called twice for the install goal.
                -->
                <execution>
                  <id>attach-sources</id>
                  <phase>DISABLE_FORKED_LIFECYCLE_MSOURCES-13</phase>
                </execution>
              </executions>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-plugin</artifactId>
                <version>2.18.1</version>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-failsafe-plugin</artifactId>
                <version>2.18.1</version>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-shade-plugin</artifactId>
                <version>2.4.1</version>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-jar-plugin</artifactId>
                <version>2.6</version>
                <configuration>
                    <archive>
                        <manifest>
                            <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
                            <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
                        </manifest>
                    </archive>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.3</version>
            </plugin>
            <!--
               ! We define a newer version than in parent.
            -->
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-gpg-plugin</artifactId>
                <version>1.6</version>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-deploy-plugin</artifactId>
                <version>2.8.2</version>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-release-plugin</artifactId>
                <version>2.5.2</version>
                <configuration>
                  <!--
                    ! overwrite arguments of parent pom to
                    ! prevent activating profile sonatype-oss-release
                  -->
                  <arguments combine.self="override" />
                  <goals>deploy site site:stage scm-publish:publish-scm</goals>
                  <autoVersionSubmodules>true</autoVersionSubmodules>
                  <useReleaseProfile>true</useReleaseProfile>
                </configuration>
            </plugin>
            <plugin>
              <groupId>org.apache.maven.plugins</groupId>
              <artifactId>maven-scm-publish-plugin</artifactId>
              <version>1.1</version>
              <configuration>
                <scmBranch>gh-pages</scmBranch>
              </configuration>
            </plugin>
          </plugins>
        </pluginManagement>
        <plugins>
            <!--
              ! Bind it to the life cycle.
            -->
            <plugin>
                <artifactId>maven-failsafe-plugin</artifactId>
                <executions>
                    <execution>
                        <id>integration-test</id>
                        <goals>
                            <goal>integration-test</goal>
                            <goal>verify</goal>
                        </goals>
                    </execution>
                </executions>
              </plugin>
              <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-shade-plugin</artifactId>
                <executions>
                  <execution>
                    <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>
                </executions>
              </plugin>
        </plugins>
    </build>

    <reporting>
      <plugins>
          <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-surefire-report-plugin</artifactId>
            <version>2.18.1</version>
            <reportSets>
              <reportSet>
                <reports>
                  <report>failsafe-report-only</report>
                  <report>report</report>
                </reports>
              </reportSet>
            </reportSets>
          </plugin>
          <plugin>
              <groupId>org.apache.maven.plugins</groupId>
              <artifactId>maven-project-info-reports-plugin</artifactId>
              <version>2.8</version>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-pmd-plugin</artifactId>
                <version>3.5</version>
                <configuration>
                  <targetJdk>${maven.compiler.target}</targetJdk>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>cobertura-maven-plugin</artifactId>
                <version>2.7</version>
            </plugin>
            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>findbugs-maven-plugin</artifactId>
                <version>2.5.2</version>
            </plugin>
            <plugin>
              <groupId>org.apache.maven.plugins</groupId>
              <artifactId>maven-jxr-plugin</artifactId>
              <version>2.5</version>
            </plugin>
        </plugins>
    </reporting>

    <profiles>
        <profile>
            <id>release</id>
            <activation>
                <property>
                    <name>performRelease</name>
                    <value>true</value>
                </property>
            </activation>
            <build>
                <plugins>
                    <plugin>
                      <groupId>org.apache.maven.plugins</groupId>
                      <artifactId>maven-gpg-plugin</artifactId>
                      <executions>
                        <execution>
                          <id>sign-artifacts</id>
                          <phase>verify</phase>
                          <goals>
                            <goal>sign</goal>
                          </goals>
                        </execution>
                      </executions>
                    </plugin>
                    <!-- MSOURCES-13 related workaround overriding super-pom -->
                    <plugin>
                      <inherited>true</inherited>
                      <artifactId>maven-source-plugin</artifactId>
                      <executions>
                        <execution>
                          <id>attach-sources-no-fork</id>
                          <goals>
                            <goal>jar-no-fork</goal>
                          </goals>
                        </execution>
                      </executions>
                    </plugin>
                    <plugin>
                        <groupId>org.apache.maven.plugins</groupId>
                        <artifactId>maven-javadoc-plugin</artifactId>
                        <version>2.10.3</version>
                        <executions>
                            <execution>
                                <id>attach-javadocs</id>
                                <goals>
                                    <goal>jar</goal>
                                </goals>
                            </execution>
                        </executions>
                    </plugin>
                </plugins>
            </build>
        </profile>
    </profiles>

    <repositories>
        <repository>
            <id>repo.jenkins-ci.org</id>
            <url>http://repo.jenkins-ci.org/public/</url>
        </repository>
    </repositories>

</project>

POM Entry

<dependency>
   <groupId>com.offbytwo.jenkins</groupId>
   <artifactId>jenkins-client</artifactId>
   <version>0.3.1</version>
</dependency>

Download

If you think the following jenkins-client-0.3.1.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.1.jar file




PreviousNext

Related