Download test-support-1.0.3.jar file

Introduction

You can download test-support-1.0.3.jar in this page.

License

The Apache Software License, Version 2.0

Type List

test-support-1.0.3.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/com.lyncode/test-support/pom.properties
META-INF/maven/com.lyncode/test-support/pom.xml
com.lyncode.test.check.Assert.class
com.lyncode.test.matchers.builder.AbstractMatcherBuilder.class
com.lyncode.test.matchers.builder.MatcherBuilder.class
com.lyncode.test.matchers.extractor.ExtractFunction.class
com.lyncode.test.matchers.extractor.MatcherExtractor.class
com.lyncode.test.matchers.string.PatternMatcher.class
com.lyncode.test.matchers.xml.XPathMatchers.class

Pom

test-support-1.0.3.pom file content.

<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/maven-v4_0_0.xsd">
    <modelVersion>4.0.0</modelVersion>


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

    <groupId>com.lyncode</groupId>
    <artifactId>test-support</artifactId>
    <packaging>jar</packaging>
    <version>1.0.3</version>

    <name>Test Support</name>

    <licenses>
        <license>
            <name>The Apache Software License, Version 2.0</name>
            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
            <distribution>repo</distribution>
        </license>
    </licenses>

    <scm>
        <connection>scm:git:git@github.com:lyncode/test-support.git</connection>
        <developerConnection>scm:git:git@github.com:lyncode/test-support.git</developerConnection>
        <url>git@github.com:lyncode/test-support.git</url>
    </scm>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-release-plugin</artifactId>
                <version>2.2.1</version>
                <executions>
                    <execution>
                        <id>default</id>
                        <goals>
                            <goal>perform</goal>
                        </goals>
                        <configuration>
                            <pomFileName>xoai/pom.xml</pomFileName>
                        </configuration>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>2.3.2</version>
                <configuration>
                    <source>1.6</source>
                    <target>1.6</target>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-source-plugin</artifactId>
                <executions>
                    <execution>
                        <id>attach-sources</id>
                        <goals>
                            <goal>jar</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-javadoc-plugin</artifactId>
                <version>2.6.1</version>
                <executions>
                    <execution>
                        <id>attach-javadocs</id>
                        <goals>
                            <goal>jar</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>

    <dependencies>
        <dependency>
            <groupId>org.hamcrest</groupId>
            <artifactId>hamcrest-all</artifactId>
            <version>1.3</version>
        </dependency>
        <dependency>
            <groupId>com.lyncode</groupId>
            <artifactId>builder-commons</artifactId>
            <version>1.0.1</version>
        </dependency>
        <dependency>
            <groupId>dom4j</groupId>
            <artifactId>dom4j</artifactId>
            <version>1.6.1</version>
        </dependency>

        <dependency>
            <groupId>com.google.guava</groupId>
            <artifactId>guava</artifactId>
            <version>15.0</version>
        </dependency>

        <dependency>
            <groupId>com.google.code.findbugs</groupId>
            <artifactId>jsr305</artifactId>
            <version>1.3.9</version>
            <scope>provided</scope>
        </dependency>
        <!-- Needed for XPath creation (dom4j) -->
        <dependency>
            <groupId>jaxen</groupId>
            <artifactId>jaxen</artifactId>
            <version>1.1.4</version>
            <scope>runtime</scope>
        </dependency>
    </dependencies>
</project>

POM Entry

<dependency>
   <groupId>com.lyncode</groupId>
   <artifactId>test-support</artifactId>
   <version>1.0.3</version>
</dependency>

Download

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



Download test-support-1.0.3.jar file




PreviousNext

Related