Download ashot-1.5.2.jar file

Introduction

You can download ashot-1.5.2.jar in this page.

License

The Apache Software License, Version 2.0

Type List

ashot-1.5.2.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/ru.yandex.qatools.ashot/ashot/pom.properties
META-INF/maven/ru.yandex.qatools.ashot/ashot/pom.xml
js/coords-single.js
js/page_height.js
js/viewport_height.js
js/viewport_width.js
ru.yandex.qatools.ashot.AShot.class
ru.yandex.qatools.ashot.Screenshot.class
ru.yandex.qatools.ashot.comparison.DiffMarkupPolicy.class
ru.yandex.qatools.ashot.comparison.ImageDiff.class
ru.yandex.qatools.ashot.comparison.ImageDiffer.class
ru.yandex.qatools.ashot.comparison.ImageMarkupPolicy.class
ru.yandex.qatools.ashot.comparison.PointsMarkupPolicy.class
ru.yandex.qatools.ashot.coordinates.Coords.class
ru.yandex.qatools.ashot.coordinates.CoordsPreparationStrategy.class
ru.yandex.qatools.ashot.coordinates.CoordsProvider.class
ru.yandex.qatools.ashot.coordinates.JqueryCoordsProvider.class
ru.yandex.qatools.ashot.coordinates.WebDriverCoordsProvider.class
ru.yandex.qatools.ashot.cropper.DefaultCropper.class
ru.yandex.qatools.ashot.cropper.ImageCropper.class
ru.yandex.qatools.ashot.cropper.indent.BlurFilter.class
ru.yandex.qatools.ashot.cropper.indent.IndentCropper.class
ru.yandex.qatools.ashot.cropper.indent.IndentFilerFactory.class
ru.yandex.qatools.ashot.cropper.indent.IndentFilter.class
ru.yandex.qatools.ashot.cropper.indent.MonochromeFilter.class
ru.yandex.qatools.ashot.shooting.CuttingDecorator.class
ru.yandex.qatools.ashot.shooting.ImageReadException.class
ru.yandex.qatools.ashot.shooting.InvalidViewportHeightException.class
ru.yandex.qatools.ashot.shooting.RotatingDecorator.class
ru.yandex.qatools.ashot.shooting.ScalingDecorator.class
ru.yandex.qatools.ashot.shooting.ShootingDecorator.class
ru.yandex.qatools.ashot.shooting.ShootingStrategies.class
ru.yandex.qatools.ashot.shooting.ShootingStrategy.class
ru.yandex.qatools.ashot.shooting.SimpleShootingStrategy.class
ru.yandex.qatools.ashot.shooting.ViewportPastingDecorator.class
ru.yandex.qatools.ashot.shooting.cutter.CutStrategy.class
ru.yandex.qatools.ashot.shooting.cutter.FixedCutStrategy.class
ru.yandex.qatools.ashot.shooting.cutter.VariableCutStrategy.class
ru.yandex.qatools.ashot.util.ImageBytesDiffer.class
ru.yandex.qatools.ashot.util.ImageTool.class
ru.yandex.qatools.ashot.util.InnerScript.class
ru.yandex.qatools.ashot.util.JsCoords.class

Pom

ashot-1.5.2.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.sonatype.oss</groupId>
        <artifactId>oss-parent</artifactId>
        <version>9</version>
    </parent>

    <groupId>ru.yandex.qatools.ashot</groupId>
    <artifactId>ashot</artifactId>
    <version>1.5.2</version>

    <organization>
        <name>Yandex</name>
        <url>http://company.yandex.com</url>
    </organization>
    <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>
    <issueManagement>
        <system>GitHub Issues</system>
        <url>https://github.com/yandex-qatools/ashot/issues</url>
    </issueManagement>

    <scm>
        <url>https://github.com/yandex-qatools/ashot</url>
        <connection>scm:git:git@github.com:yandex-qatools/ashot.git</connection>
        <developerConnection>scm:git:git@github.com:yandex-qatools/ashot.git</developerConnection>
    </scm>

    <name>Yandex QATools AShot WebDriver Utility</name>

    <developers>
        <developer>
            <id>Pazone</id>
            <name>Pavel Zorin</name>
            <email>pazone@yandex-team.ru</email>
            <organization>Yandex</organization>
        </developer>
    </developers>

    <dependencies>
        <dependency>
            <groupId>org.seleniumhq.selenium</groupId>
            <artifactId>selenium-java</artifactId>
            <version>2.47.2</version>
        </dependency>
        <dependency>
            <groupId>com.google.code.gson</groupId>
            <artifactId>gson</artifactId>
            <version>2.2.4</version>
        </dependency>
        <dependency>
            <groupId>org.hamcrest</groupId>
            <artifactId>hamcrest-all</artifactId>
            <version>1.3</version>
        </dependency>
        <dependency>
            <groupId>com.googlecode.lambdaj</groupId>
            <artifactId>lambdaj</artifactId>
            <version>2.3.3</version>
        </dependency>

        <!--test-->
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.11</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.mockito</groupId>
            <artifactId>mockito-all</artifactId>
            <version>1.8.4</version>
            <scope>test</scope>
        </dependency>
    </dependencies>


    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-source-plugin</artifactId>
                <version>2.4</version>
                <executions>
                    <execution>
                        <id>attach-sources</id>
                        <goals>
                            <goal>jar</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.1</version>
                <configuration>
                    <source>1.7</source>
                    <target>1.7</target>
                    <forceJavacCompilerUse>true</forceJavacCompilerUse>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-javadoc-plugin</artifactId>
                <configuration>
                    <additionalparam>-Xdoclint:none</additionalparam>
                </configuration>
            </plugin>
        </plugins>
    </build>


</project>

POM Entry

<dependency>
   <groupId>ru.yandex.qatools.ashot</groupId>
   <artifactId>ashot</artifactId>
   <version>1.5.2</version>
</dependency>

Download

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



Download ashot-1.5.2.jar file




PreviousNext

Related