Download brooklyn-test-framework-0.9.0.jar file

Introduction

You can download brooklyn-test-framework-0.9.0.jar in this page.

License

Apache License

Type List

brooklyn-test-framework-0.9.0.jar file has the following types.

META-INF/DEPENDENCIES
META-INF/LICENSE
META-INF/MANIFEST.MF
META-INF/NOTICE
META-INF/maven/org.apache.brooklyn/brooklyn-test-framework/pom.properties
META-INF/maven/org.apache.brooklyn/brooklyn-test-framework/pom.xml
org.apache.brooklyn.test.framework.BaseTest.class
org.apache.brooklyn.test.framework.InfrastructureDeploymentTestCase.class
org.apache.brooklyn.test.framework.InfrastructureDeploymentTestCaseImpl.class
org.apache.brooklyn.test.framework.LoopOverGroupMembersTestCase.class
org.apache.brooklyn.test.framework.LoopOverGroupMembersTestCaseImpl.class
org.apache.brooklyn.test.framework.ParallelTestCase.class
org.apache.brooklyn.test.framework.ParallelTestCaseImpl.class
org.apache.brooklyn.test.framework.SimpleShellCommandTest.class
org.apache.brooklyn.test.framework.SimpleShellCommandTestImpl.class
org.apache.brooklyn.test.framework.TargetableTestComponent.class
org.apache.brooklyn.test.framework.TargetableTestComponentImpl.class
org.apache.brooklyn.test.framework.TestCase.class
org.apache.brooklyn.test.framework.TestCaseImpl.class
org.apache.brooklyn.test.framework.TestEffector.class
org.apache.brooklyn.test.framework.TestEffectorImpl.class
org.apache.brooklyn.test.framework.TestFrameworkAssertions.class
org.apache.brooklyn.test.framework.TestHttpCall.class
org.apache.brooklyn.test.framework.TestHttpCallImpl.class
org.apache.brooklyn.test.framework.TestSensor.class
org.apache.brooklyn.test.framework.TestSensorImpl.class

Pom

brooklyn-test-framework-0.9.0.pom file content.

<?xml version="1.0" encoding="UTF-8"?>
<!--
  Licensed to the Apache Software Foundation (ASF) under one
  or more contributor license agreements.  See the NOTICE file
  distributed with this work for additional information
  regarding copyright ownership.  The ASF licenses this file
  to you under the Apache License, Version 2.0 (the
  "License"); you may not use this file except in compliance
  with the License.  You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

  Unless required by applicable law or agreed to in writing,
  software distributed under the License is distributed on an
  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  KIND, either express or implied.  See the License for the
  specific language governing permissions and limitations
  under the License.
  -->

<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">
    <parent>
        <artifactId>brooklyn-parent</artifactId>
        <groupId>org.apache.brooklyn</groupId>
        <version>0.9.0</version><!-- BROOKLYN_VERSION -->
        <relativePath>../parent/pom.xml</relativePath>
    </parent>
    <modelVersion>4.0.0</modelVersion>

    <artifactId>brooklyn-test-framework</artifactId>
    <name>Brooklyn Test Framework</name>

    <dependencies>

        <dependency>
            <groupId>org.apache.brooklyn</groupId>
            <artifactId>brooklyn-core</artifactId>
            <version>${brooklyn.version}</version>
        </dependency>
        <dependency>
            <groupId>org.apache.brooklyn</groupId>
            <artifactId>brooklyn-camp</artifactId>
            <version>${brooklyn.version}</version>
        </dependency>

        <!--TEST SCOPE :: START-->
        <dependency>
            <groupId>org.apache.brooklyn</groupId>
            <artifactId>brooklyn-logback-xml</artifactId>
            <version>${brooklyn.version}</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.testng</groupId>
            <artifactId>testng</artifactId>
            <version>${testng.version}</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.apache.brooklyn</groupId>
            <artifactId>brooklyn-test-support</artifactId>
            <version>${project.version}</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.apache.brooklyn</groupId>
            <artifactId>brooklyn-core</artifactId>
            <version>${brooklyn.version}</version>
            <scope>test</scope>
            <classifier>tests</classifier>
        </dependency>
        <dependency>
            <groupId>org.assertj</groupId>
            <artifactId>assertj-core</artifactId>
            <version>${assertj.version}</version>
            <scope>test</scope>
        </dependency>
        <!--TEST SCOPE :: END-->

    </dependencies>

    <build>
        <plugins>
            <plugin>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.3</version>
                <configuration>
                    <source>${java.version}</source>
                    <target>${java.version}</target>
                </configuration>
            </plugin>
        </plugins>
    </build>
</project>

POM Entry

<dependency>
   <groupId>org.apache.brooklyn</groupId>
   <artifactId>brooklyn-test-framework</artifactId>
   <version>0.9.0</version>
</dependency>

Download

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



Download brooklyn-test-framework-0.9.0.jar file




PreviousNext

Related