Download hudson-test-framework-2.2.1.jar file

Introduction

You can download hudson-test-framework-2.2.1.jar in this page.

License

Open Source License

Type List

hudson-test-framework-2.2.1.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/annotations/hudson.Extension
META-INF/exposed.stapler-beans
META-INF/maven/org.jvnet.hudson.main/hudson-test-framework/pom.properties
META-INF/maven/org.jvnet.hudson.main/hudson-test-framework/pom.xml
anonymous-readonly.zip
apache-ant-1.8.1-bin.zip
apache-maven-2.2.1-bin.zip
apache-maven-3.0.1-bin.zip
maven-2.0.7-bin.zip
no-anonymous-readaccess.zip
org.jvnet.hudson.test.CaptureEnvironmentBuilder.class
org.jvnet.hudson.test.ClosureExecuterAction.class
org.jvnet.hudson.test.ComputerConnectorTester.class
org.jvnet.hudson.test.DefaultConstructorChecker.class
org.jvnet.hudson.test.ExtractChangeLogParser.ExtractChangeLogEntry.javadoc
org.jvnet.hudson.test.ExtractChangeLogParser.FileInZip.javadoc
org.jvnet.hudson.test.ExtractChangeLogParser.class
org.jvnet.hudson.test.ExtractChangeLogSet.class
org.jvnet.hudson.test.ExtractResourceSCM.class
org.jvnet.hudson.test.ExtractResourceWithChangesSCM.class
org.jvnet.hudson.test.FailureBuilder.class
org.jvnet.hudson.test.FakeLauncher.class
org.jvnet.hudson.test.GroovyHudsonTestCase.class
org.jvnet.hudson.test.HudsonHomeLoader.class
org.jvnet.hudson.test.HudsonPageCreator.class
org.jvnet.hudson.test.HudsonTestCase.class
org.jvnet.hudson.test.JavaNetReverseProxy.class
org.jvnet.hudson.test.JellyTestSuiteBuilder.class
org.jvnet.hudson.test.LenientRunnable.class
org.jvnet.hudson.test.MockBuilder.class
org.jvnet.hudson.test.NoListenerConfiguration.class
org.jvnet.hudson.test.PluginAutomaticTestBuilder.class
org.jvnet.hudson.test.PretendSlave.class
org.jvnet.hudson.test.SequenceLock.class
org.jvnet.hudson.test.SingleFileSCM.class
org.jvnet.hudson.test.SleepBuilder.class
org.jvnet.hudson.test.TemporaryDirectoryAllocator.class
org.jvnet.hudson.test.TestBuilder.class
org.jvnet.hudson.test.TestCrumbIssuer.class
org.jvnet.hudson.test.TestEnvironment.class
org.jvnet.hudson.test.TestExtension.class
org.jvnet.hudson.test.TestExtensionLoader.class
org.jvnet.hudson.test.TestPluginManager.class
org.jvnet.hudson.test.TouchBuilder.class
org.jvnet.hudson.test.UnstableBuilder.class
org.jvnet.hudson.test.WarExploder.class
org.jvnet.hudson.test.junit.FailedTest.class
org.jvnet.hudson.test.junit.GroupedTest.class
org.jvnet.hudson.test.recipes.LocalData.class
org.jvnet.hudson.test.recipes.PresetData.class
org.jvnet.hudson.test.recipes.Recipe.class
org.jvnet.hudson.test.recipes.WithPlugin.class
org.jvnet.hudson.test.rhino.CallStackFrame.class
org.jvnet.hudson.test.rhino.JavaScriptDebugger.class
org/jvnet/hudson/test/CaptureEnvironmentBuilder/config.jelly
org/jvnet/hudson/test/ClosureExecuterAction/doIndex.stapler
org/jvnet/hudson/test/ComputerConnectorTester/configure.jelly
org/jvnet/hudson/test/FailureBuilder/config.jelly
org/jvnet/hudson/test/MockBuilder/config.jelly
org/jvnet/hudson/test/SleepBuilder/config.jelly
org/jvnet/hudson/test/UnstableBuilder/config.jelly
plugins/tasks.hpi
simple-projects.zip
svn-repo.zip

Pom

hudson-test-framework-2.2.1.pom file content.

<?xml version="1.0" encoding="UTF-8"?>
<!--
  The MIT License

  Copyright (c) 2011, Oracle Corporation, Nikita Levyankov

  Permission is hereby granted, free of charge, to any person obtaining a copy
  of this software and associated documentation files (the "Software"), to deal
  in the Software without restriction, including without limitation the rights
  to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  copies of the Software, and to permit persons to whom the Software is
  furnished to do so, subject to the following conditions:

  The above copyright notice and this permission notice shall be included in
  all copies or substantial portions of the Software.

  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  THE SOFTWARE.
  -->
<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>org.jvnet.hudson.main</groupId>
    <artifactId>hudson</artifactId>
    <version>2.2.1</version>
    <relativePath>../pom.xml</relativePath>
  </parent>

  <artifactId>hudson-test-framework</artifactId>
  <name>Hudson :: Test Framework</name>
  <description>
    Contains common classes for testing.
  </description>

  <properties>
    <htmlunit.version>2.6-hudson-2</htmlunit.version>
    <embedded-rhino-debugger.version>1.2</embedded-rhino-debugger.version>
    <netx.version>0.5-hudson-2</netx.version>
    <gmaven-plugin.version>1.3</gmaven-plugin.version>
    <gmaven-provider.version>1.7</gmaven-provider.version>
  </properties>

  <dependencies>
    <dependency>
      <!--
        put hudson.war in the classpath. we can't pull in the war artifact directly
        because Maven excludes all wars from classpath automatically. so we need a jar artifact.
      -->
      <groupId>org.jvnet.hudson.main</groupId>
      <artifactId>hudson-war</artifactId>
      <version>${project.version}</version>
      <classifier>war-for-test</classifier>
      <exclusions>
        <exclusion>
          <groupId>org.slf4j</groupId>
          <artifactId>slf4j-jdk14</artifactId>
        </exclusion>
      </exclusions>
    </dependency>

    <dependency>
      <groupId>org.jvnet.hudson.main</groupId>
      <artifactId>hudson-inject</artifactId>
      <classifier>tests</classifier>
    </dependency>

    <dependency>
      <groupId>org.jvnet.hudson.main</groupId>
      <artifactId>rest-plugin</artifactId>
      <version>2.1.2</version>
    </dependency>
    <dependency>
      <groupId>org.jvnet.hudson.main</groupId>
      <artifactId>maven-plugin</artifactId>
      <version>2.2.0</version>
    </dependency>

    <dependency>
      <groupId>org.jvnet.hudson.main</groupId>
      <artifactId>hudson-cli</artifactId>
    </dependency>

    <dependency>
      <groupId>org.mortbay.jetty</groupId>
      <artifactId>jetty</artifactId>
    </dependency>

    <dependency>
      <groupId>org.jvnet.hudson</groupId>
      <artifactId>test-annotations</artifactId>
      <version>${test-annotations.version}</version>
      <scope>compile</scope>
      <!-- in this module we need this as a compile scope, whereas in the parent it's test -->
    </dependency>

    <dependency>
      <groupId>org.jvnet.hudson</groupId>
      <artifactId>htmlunit</artifactId>
      <version>${htmlunit.version}</version>
      <exclusions>
        <exclusion>
          <!--  hides JDK DOM classes in Eclipse -->
          <groupId>xml-apis</groupId>
          <artifactId>xml-apis</artifactId>
        </exclusion>
      </exclusions>
    </dependency>

    <dependency>
      <groupId>org.jvnet.hudson</groupId>
      <artifactId>embedded-rhino-debugger</artifactId>
      <version>${embedded-rhino-debugger.version}</version>
    </dependency>

    <dependency>
      <!-- for testing JNLP launch. -->
      <groupId>org.jvnet.hudson</groupId>
      <artifactId>netx</artifactId>
      <version>${netx.version}</version>
    </dependency>

    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <scope>compile</scope>
    </dependency>

  </dependencies>

  <build>
      <plugins>
        <plugin>
          <groupId>org.codehaus.gmaven</groupId>
          <artifactId>gmaven-plugin</artifactId>
          <version>${gmaven-plugin.version}</version>
          <dependencies>
            <dependency>
              <groupId>org.codehaus.groovy</groupId>
              <artifactId>groovy-all</artifactId>
              <version>${groovy.version}</version>
            </dependency>
            <dependency>
              <groupId>org.codehaus.gmaven.runtime</groupId>
              <artifactId>gmaven-runtime-1.7</artifactId>
              <version>${gmaven-plugin.version}</version>
              <exclusions>
                <exclusion>
                  <groupId>org.codehaus.groovy</groupId>
                  <artifactId>groovy-all</artifactId>
                </exclusion>
              </exclusions>
            </dependency>
            <dependency>
              <groupId>org.apache.ant</groupId>
              <artifactId>ant</artifactId>
              <version>${ant.version}</version>
            </dependency>
          </dependencies>
          <executions>
            <execution>
              <id>preset-packager</id>
              <phase>process-resources</phase>
              <goals>
                <goal>execute</goal>
              </goals>
              <configuration>
                <source>${pom.basedir}/src/main/preset-data/package.groovy</source>
                <providerSelection>${gmaven-provider.version}</providerSelection>
              </configuration>
            </execution>
            <execution>
              <id>test-in-groovy</id>
              <goals>
                <goal>testCompile</goal>
              </goals>
              <configuration>
                <providerSelection>${gmaven-provider.version}</providerSelection>
              </configuration>
            </execution>
          </executions>
        </plugin>
      </plugins>
  </build>
</project>

POM Entry

<dependency>
   <groupId>org.jvnet.hudson.main</groupId>
   <artifactId>hudson-test-framework</artifactId>
   <version>2.2.1</version>
</dependency>

Download

If you think the following hudson-test-framework-2.2.1.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download hudson-test-framework-2.2.1.jar file




PreviousNext

Related