Download thucydides-junit-0.9.268.jar file

Introduction

You can download thucydides-junit-0.9.268.jar in this page.

License

Open Source

Type List

thucydides-junit-0.9.268.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/net.thucydides/thucydides-junit/pom.properties
META-INF/maven/net.thucydides/thucydides-junit/pom.xml
net.thucydides.junit.ThucydidesJUnitSystemProperties.class
net.thucydides.junit.annotations.Concurrent.class
net.thucydides.junit.annotations.Qualifier.class
net.thucydides.junit.annotations.TestData.class
net.thucydides.junit.annotations.UseTestDataFrom.class
net.thucydides.junit.annotations.package-info.class
net.thucydides.junit.finder.DataDrivenTestFinder.class
net.thucydides.junit.finder.DefaultTestFinder.class
net.thucydides.junit.finder.FinderType.class
net.thucydides.junit.finder.NormalTestFinder.class
net.thucydides.junit.finder.TestFinder.class
net.thucydides.junit.finder.TestFinderBuilder.class
net.thucydides.junit.finder.TestFinderBuilderFactory.class
net.thucydides.junit.finder.TestMethodFinder.class
net.thucydides.junit.guice.JUnitInjectors.class
net.thucydides.junit.guice.ThucydidesJUnitModule.class
net.thucydides.junit.internals.MethodInvoker.class
net.thucydides.junit.internals.package-info.class
net.thucydides.junit.listeners.JUnitStepListener.class
net.thucydides.junit.listeners.JUnitStepListenerBuilder.class
net.thucydides.junit.listeners.TestCountListener.class
net.thucydides.junit.listeners.TestCounter.class
net.thucydides.junit.listeners.package-info.class
net.thucydides.junit.runners.DataDrivenAnnotations.class
net.thucydides.junit.runners.FailureDetectingStepListener.class
net.thucydides.junit.runners.ParameterizedJUnitStepListener.class
net.thucydides.junit.runners.ParameterizedRunnerScheduler.class
net.thucydides.junit.runners.ParameterizedTestsOutcomeAggregator.class
net.thucydides.junit.runners.QualifierFinder.class
net.thucydides.junit.runners.RetryFilteringRunNotifier.class
net.thucydides.junit.runners.RunNotifierDecorator.class
net.thucydides.junit.runners.TestClassRunnerForInstanciatedTestCase.class
net.thucydides.junit.runners.TestClassRunnerForParameters.class
net.thucydides.junit.runners.TestMethodAnnotations.class
net.thucydides.junit.runners.ThucydidesParameterizedRunner.class
net.thucydides.junit.runners.ThucydidesRunner.class
net.thucydides.junit.runners.ThucydidesStatement.class
net.thucydides.junit.runners.package-info.class
net.thucydides.junit.spring.RunAfterTestMethodCallbacks.class
net.thucydides.junit.spring.RunBeforeTestMethodCallbacks.class
net.thucydides.junit.spring.SpringIntegration.class
specs/specifications.md

Pom

thucydides-junit-0.9.268.pom file content.

<?xml version="1.0"?>
<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>
        <artifactId>thucydides</artifactId>
        <groupId>net.thucydides</groupId>
        <version>0.9.268</version>
    </parent>
    <groupId>net.thucydides</groupId>
    <artifactId>thucydides-junit</artifactId>
    <name>thucydides-junit</name>
    <properties>
        <spring.version>3.1.1.RELEASE</spring.version>
    </properties>
    <build>
        <plugins>
            <plugin>
                <groupId>org.jacoco</groupId>
                <artifactId>jacoco-maven-plugin</artifactId>
            </plugin>
        </plugins>
    </build>
    <dependencies>
        <dependency>
            <groupId>net.thucydides</groupId>
            <artifactId>thucydides-core</artifactId>
            <version>${project.version}</version>
            <type>jar</type>
            <scope>compile</scope>
        </dependency>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-core</artifactId>
            <version>${spring.version}</version>
            <optional>true</optional>
        </dependency>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-beans</artifactId>
            <version>${spring.version}</version>
            <optional>true</optional>
        </dependency>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-test</artifactId>
            <version>${spring.version}</version>
            <optional>true</optional>
        </dependency>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-context</artifactId>
            <version>${spring.version}</version>
            <optional>true</optional>
        </dependency>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-context-support</artifactId>
            <version>${spring.version}</version>
            <optional>true</optional>
        </dependency>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>${junit.version}</version>
        </dependency>
        <dependency>
            <groupId>org.hamcrest</groupId>
            <artifactId>hamcrest-core</artifactId>
        </dependency>
        <!-- TEST DEPENDENCIES -->
        <dependency>
            <groupId>net.thucydides</groupId>
            <artifactId>thucydides-test-utils</artifactId>
            <version>${project.version}</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>commons-dbcp</groupId>
            <artifactId>commons-dbcp</artifactId>
            <version>1.3</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-jdbc</artifactId>
            <version>${spring.version}</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>javassist</groupId>
            <artifactId>javassist</artifactId>
            <version>3.4.GA</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-orm</artifactId>
            <version>${spring.version}</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-aop</artifactId>
            <version>${spring.version}</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>hsqldb</groupId>
            <artifactId>hsqldb</artifactId>
            <version>1.8.0.10</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.hibernate</groupId>
            <artifactId>hibernate-entitymanager</artifactId>
            <version>3.5.4-Final</version>
            <scope>test</scope>
            <exclusions>
                <exclusion>
                    <groupId>commons-logging</groupId>
                    <artifactId>commons-logging</artifactId>
                </exclusion>
                <exclusion>
                    <artifactId>slf4j-api</artifactId>
                    <groupId>org.slf4j</groupId>
                </exclusion>
                <exclusion>
                    <artifactId>commons-collections</artifactId>
                    <groupId>commons-collections</groupId>
                </exclusion>
                <exclusion>
                    <artifactId>cglib</artifactId>
                    <groupId>cglib</groupId>
                </exclusion>
                <exclusion>
                    <artifactId>xml-apis</artifactId>
                    <groupId>xml-apis</groupId>
                </exclusion>
            </exclusions>
        </dependency>
    </dependencies>
    <profiles>
        <profile>
            <id>fast</id>
            <build>
                <plugins>
                    <plugin>
                        <groupId>org.apache.maven.plugins</groupId>
                        <artifactId>maven-surefire-plugin</artifactId>
                        <version>${surefire.version}</version>
                        <executions>
                            <execution>
                                <id>unit-tests</id>
                                <phase>test</phase>
                                <goals>
                                    <goal>test</goal>
                                </goals>
                                <configuration>
                                    <parallel>classes</parallel>
                                    <threadCount>8</threadCount>
                                </configuration>
                            </execution>
                            <execution>
                                <id>integration-tests</id>
                                <phase>integration-test</phase>
                                <goals>
                                    <goal>test</goal>
                                </goals>
                                <configuration>
                                    <parallel>none</parallel>
                                    <!--<threadCount>4</threadCount>-->
                                </configuration>
                            </execution>
                        </executions>
                    </plugin>
                </plugins>
            </build>
        </profile>
    </profiles>
</project>

POM Entry

<dependency>
   <groupId>net.thucydides</groupId>
   <artifactId>thucydides-junit</artifactId>
   <version>0.9.268</version>
</dependency>

Download

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



Download thucydides-junit-0.9.268.jar file




PreviousNext

Related