Download wisdom-test-0.10.0.jar file

Introduction

You can download wisdom-test-0.10.0.jar in this page.

License

Open Source

Type List

wisdom-test-0.10.0.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/org.wisdom-framework/wisdom-test/pom.properties
META-INF/maven/org.wisdom-framework/wisdom-test/pom.xml
org.wisdom.test.WisdomBlackBoxRunner.class
org.wisdom.test.WisdomRunListener.class
org.wisdom.test.WisdomRunner.class
org.wisdom.test.assertions.ActionResultAssert.class
org.wisdom.test.assertions.ContextAssert.class
org.wisdom.test.assertions.HttpResponseAssert.class
org.wisdom.test.assertions.SessionAssert.class
org.wisdom.test.assertions.StatusAssert.class
org.wisdom.test.assertions.WisdomAssertions.class
org.wisdom.test.http.BaseRequest.class
org.wisdom.test.http.Body.class
org.wisdom.test.http.Callback.class
org.wisdom.test.http.ClientFactory.class
org.wisdom.test.http.GetRequest.class
org.wisdom.test.http.HttpClientHelper.class
org.wisdom.test.http.HttpDeleteWithBody.class
org.wisdom.test.http.HttpRequest.class
org.wisdom.test.http.HttpRequestWithBody.class
org.wisdom.test.http.HttpResponse.class
org.wisdom.test.http.MultipartBody.class
org.wisdom.test.http.Options.class
org.wisdom.test.http.RequestBodyEntity.class
org.wisdom.test.internals.ChameleonExecutor.class
org.wisdom.test.internals.ClassPathResource.class
org.wisdom.test.internals.Packages.class
org.wisdom.test.internals.ProbeBundleMaker.class
org.wisdom.test.internals.RunnerUtils.class
org.wisdom.test.parents.Action.class
org.wisdom.test.parents.ControllerTest.class
org.wisdom.test.parents.DependencyInjector.class
org.wisdom.test.parents.FakeConfiguration.class
org.wisdom.test.parents.FakeContext.class
org.wisdom.test.parents.FakeCookies.class
org.wisdom.test.parents.FakeFileItem.class
org.wisdom.test.parents.FakeFlashCookie.class
org.wisdom.test.parents.FakeRequest.class
org.wisdom.test.parents.FakeSessionCookie.class
org.wisdom.test.parents.Filter.class
org.wisdom.test.parents.Invocation.class
org.wisdom.test.parents.Name.class
org.wisdom.test.parents.WisdomBlackBoxTest.class
org.wisdom.test.parents.WisdomFluentLeniumTest.class
org.wisdom.test.parents.WisdomTest.class
org.wisdom.test.parents.WisdomUnitTest.class
org.wisdom.test.probe.Activator.class
org.wisdom.test.shared.InVivoClassLoader.class
org.wisdom.test.shared.InVivoRunner.class
org.wisdom.test.shared.InVivoRunnerFactory.class

Pom

wisdom-test-0.10.0.pom file content.

<?xml version="1.0" encoding="UTF-8"?>
<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.wisdom-framework</groupId>
        <artifactId>wisdom-framework</artifactId>
        <version>0.10.0</version>
        <relativePath>../../pom.xml</relativePath>
    </parent>

    <artifactId>wisdom-test</artifactId>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-failsafe-plugin</artifactId>
                <executions>
                    <execution>
                        <goals>
                            <goal>integration-test</goal>
                            <goal>verify</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>

    <dependencies>
        <dependency>
            <groupId>${project.groupId}</groupId>
            <artifactId>wisdom-api</artifactId>
            <version>${project.version}</version>
        </dependency>
        <dependency>
            <groupId>${project.groupId}</groupId>
            <artifactId>wisdom-ipojo-module</artifactId>
            <version>${project.version}</version>
        </dependency>
        <dependency>
            <groupId>${project.groupId}</groupId>
            <artifactId>wisdom-maven-plugin</artifactId>
            <version>${project.version}</version>
            <exclusions>
                <!-- Exclude the surefire report using a version of Xerces not compatible with Fluentlenium -->
                <exclusion>
                    <artifactId>surefire-report-parser</artifactId>
                    <groupId>org.apache.maven.surefire</groupId>
                </exclusion>
                <exclusion>
                    <artifactId>maven-surefire-report-plugin</artifactId>
                    <groupId>org.apache.maven.plugins</groupId>
                </exclusion>
            </exclusions>
        </dependency>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <scope>compile</scope>
        </dependency>
        <dependency>
            <groupId>org.slf4j</groupId>
            <artifactId>slf4j-api</artifactId>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>org.slf4j</groupId>
            <artifactId>slf4j-jcl</artifactId>
            <version>${slf4j.version}</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.assertj</groupId>
            <artifactId>assertj-core</artifactId>
            <scope>compile</scope>
        </dependency>
        <dependency>
            <groupId>org.mockito</groupId>
            <artifactId>mockito-all</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>javax.inject</groupId>
            <artifactId>javax.inject</artifactId>
            <version>1</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>biz.aQute.bnd</groupId>
            <artifactId>bndlib</artifactId>
            <version>${bnd.version}</version>
            <exclusions>
                <exclusion>
                    <groupId>org.osgi</groupId>
                    <artifactId>org.osgi.core</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
        <dependency>
            <groupId>org.apache.felix</groupId>
            <artifactId>org.apache.felix.ipojo.annotations</artifactId>
            <scope>compile</scope>
        </dependency>
        <dependency>
            <groupId>org.apache.felix</groupId>
            <artifactId>org.apache.felix.ipojo.manipulator</artifactId>
            <version>${ipojo.version}</version>
        </dependency>
        <dependency>
            <groupId>org.ow2.chameleon.testing</groupId>
            <artifactId>osgi-helpers</artifactId>
            <version>0.6.2</version>
            <exclusions>
                <exclusion>
                    <groupId>org.apache.felix</groupId>
                    <artifactId>org.apache.felix.framework</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>org.ow2.chameleon</groupId>
                    <artifactId>chameleon-core</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>org.osgi</groupId>
                    <artifactId>org.osgi.core</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>ch.qos.logback</groupId>
                    <artifactId>logback-core</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>ch.qos.logback</groupId>
                    <artifactId>logback-classic</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>biz.aQute</groupId>
                    <artifactId>bndlib</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>org.ops4j.pax.exam</groupId>
                    <artifactId>pax-exam</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>org.ops4j.pax.exam</groupId>
                    <artifactId>pax-exam-junit</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>org.ops4j.pax.exam</groupId>
                    <artifactId>pax-exam-junit4</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>org.ops4j.pax.exam</groupId>
                    <artifactId>pax-exam-container-native</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>org.ops4j.pax.exam</groupId>
                    <artifactId>pax-exam-link-mvn</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>org.ops4j.pax.url</groupId>
                    <artifactId>pax-url-wrap</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>org.ops4j.pax.tinybundles</groupId>
                    <artifactId>tinybundles</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>org.ow2.chameleon.testing</groupId>
                    <artifactId>tinybundles-ipojo</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>org.ow2.chameleon</groupId>
                    <artifactId>chameleon-core</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
        <dependency>
            <groupId>org.ow2.chameleon</groupId>
            <artifactId>chameleon-core</artifactId>
            <exclusions>
                <exclusion>
                    <groupId>org.apache.felix</groupId>
                    <artifactId>org.apache.felix.configadmin</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>org.apache.felix</groupId>
                    <artifactId>org.apache.felix.ipojo.gogo</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>org.apache.felix</groupId>
                    <artifactId>org.apache.felix.gogo.runtime</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>org.apache.felix</groupId>
                    <artifactId>org.apache.felix.gogo.command</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>org.apache.felix</groupId>
                    <artifactId>org.apache.felix.ipojo.handler.whiteboard</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>org.ow2.shelbie</groupId>
                    <artifactId>shelbie-core</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>org.ow2.shelbie.commands</groupId>
                    <artifactId>shelbie-builtin-commands</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>org.ow2.shelbie</groupId>
                    <artifactId>shelbie-startup-console</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>org.ow2.shelbie.commands</groupId>
                    <artifactId>shelbie-ipojo-commands</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>org.ow2.bundles</groupId>
                    <artifactId>ow2-util-i18n</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>org.ow2.bundles</groupId>
                    <artifactId>ow2-util-log</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
        <dependency>
            <groupId>org.jsoup</groupId>
            <artifactId>jsoup</artifactId>
            <version>${jsoup.version}</version>
        </dependency>
        <dependency>
            <groupId>org.apache.httpcomponents</groupId>
            <artifactId>httpclient</artifactId>
            <version>${httpclient.version}</version>
        </dependency>
        <dependency>
            <groupId>org.apache.httpcomponents</groupId>
            <artifactId>httpasyncclient</artifactId>
            <version>${httpclient.async.version}</version>
        </dependency>
        <dependency>
            <groupId>org.apache.httpcomponents</groupId>
            <artifactId>httpmime</artifactId>
            <version>${httpclient.version}</version>
        </dependency>
        <dependency>
            <groupId>org.fluentlenium</groupId>
            <artifactId>fluentlenium-core</artifactId>
            <scope>compile</scope>
        </dependency>
        <dependency>
            <groupId>org.seleniumhq.selenium</groupId>
            <artifactId>selenium-java</artifactId>
            <version>2.48.2</version>
        </dependency>
    </dependencies>
</project>

POM Entry

<dependency>
   <groupId>org.wisdom-framework</groupId>
   <artifactId>wisdom-test</artifactId>
   <version>0.10.0</version>
</dependency>

Download

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



Download wisdom-test-0.10.0.jar file




PreviousNext

Related