Download Appium-Support-1.0.5.jar file

Introduction

You can download Appium-Support-1.0.5.jar in this page.

License

Apache License, Version 2.0

Type List

Appium-Support-1.0.5.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/com.github.genium-framework/Appium-Support/pom.properties
META-INF/maven/com.github.genium-framework/Appium-Support/pom.xml
com.github.genium_framework.appium.support.command.CommandManager.class
com.github.genium_framework.appium.support.server.AppiumServer.class
com.github.genium_framework.appium.support.server.arguments.AppiumAndroidArgs.class
com.github.genium_framework.appium.support.server.arguments.AppiumCommonArgs.class
com.github.genium_framework.appium.support.server.arguments.AppiumIOSArgs.class
com.github.genium_framework.server.IMobileServer.class
com.github.genium_framework.server.ServerArguments.class
com.github.genium_framework.server.exception.InvalidAppiumJSFilePathException.class
com.github.genium_framework.server.exception.InvalidNodeFilePathException.class
com.github.genium_framework.server.exception.InvalidServerFileException.class
com.github.genium_framework.server.exception.ServerDirectoryNotFoundException.class
com.github.genium_framework.server.exception.ServerException.class
com.github.genium_framework.server.exception.ServerTimeoutException.class

Pom

Appium-Support-1.0.5.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>
    <groupId>com.github.genium-framework</groupId>
    <artifactId>Appium-Support</artifactId>
    <version>1.0.5</version>
    <packaging>jar</packaging>
    <name>Appium Support</name>
    <description>A set of tools to help in the process of creating automated mobile tests using Appium.</description>
    <url>https://github.com/Genium-Framework/Appium-Support</url>

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

    <scm>
        <url>https://github.com/Genium-Framework/Appium-Support</url>
        <connection>scm:git:git://github.com/Genium-Framework/Appium-Support.git</connection>
        <developerConnection>scm:git:git@github.com:Genium-Framework/Appium-Support.git</developerConnection>
    </scm>

    <developers>
        <developer>
            <email>hassan.muhammad1990@gmail.com</email>
            <name>Hassan Radi</name>
            <url>https://github.com/Hassan-Radi</url>
            <id>Hassan-Radi</id>
            <organization>Genium Testing Framework</organization>
            <organizationUrl>https://github.com/Genium-Framework</organizationUrl>
        </developer>
    </developers>
        
    <!-- Define the minimum version of Maven that is required by this project -->
    <prerequisites>
        <maven>2.2.1</maven>
    </prerequisites>
    
    <build>
        <plugins>
            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>versions-maven-plugin</artifactId>
                <version>2.2</version>
                <executions>
                    <!-- Display a dependeny report about new available versions -->
                    <execution>
                        <id>report-on-dependencies</id>
                        <phase>install</phase>
                        <goals>
                            <goal>display-dependency-updates</goal>
                        </goals>
                    </execution>
                    
                    <!-- Display a plugin report about new available version -->
                    <execution>
                        <id>report-on-plugins</id>
                        <phase>install</phase>
                        <goals>
                            <goal>display-plugin-updates</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
            
            <!-- Generate sources file -->
            <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-no-fork</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
            
            <!-- Generate Javadoc file -->
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-javadoc-plugin</artifactId>
                <version>2.10.3</version>
                <executions>
                    <execution>
                        <id>attach-javadocs</id>
                        <goals>
                            <goal>jar</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>
    
    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <maven.compiler.source>1.5</maven.compiler.source>
        <maven.compiler.target>1.5</maven.compiler.target>
    </properties>
	
    <dependencies>
        <dependency>
            <groupId>org.apache.commons</groupId>
            <artifactId>commons-exec</artifactId>
            <version>1.3</version>
        </dependency>
        <dependency>
            <groupId>commons-io</groupId>
            <artifactId>commons-io</artifactId>
            <version>2.4</version>
        </dependency>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.12</version>
            <scope>test</scope>
        </dependency>
    </dependencies>
</project>

POM Entry

<dependency>
   <groupId>com.github.genium-framework</groupId>
   <artifactId>Appium-Support</artifactId>
   <version>1.0.5</version>
</dependency>

Download

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



Download Appium-Support-1.0.5.jar file




PreviousNext

Related