Using Build Tools

TAF can be used any of the build tools. You simple have to add the TAF jar as a dependency in your build tool. TAF is deployed on maven repository so it can be downloaded automatically by ivy, maven or gradle build tools. Following are the configurations for few tools:

Maven

Add TAF repository to your pom.xml file or setting.xml as shown below:

    
        
            taf-repo
            TAF repo
            https://github.com/menonvarun/mvn-repo/raw/master/releases
        
    
	

Add TAF as a dependency in your pom.xml.

 	
		<groupId>org.imaginea</groupId>
		<artifactId>testautomationframework</artifactId>
		(taf-version)
	
 	

Gradle

Add TAF repository to your builds.gradle file as shown below:

    reposittories {
		mavenRepo urls: "https://github.com/menonvarun/mvn-repo/raw/master/releases"
	}
	

Add TAF as a dependency in your build.gradle.

 	dependencies {
		compile "org.imaginea:testautomationframework:0.0.4"
	}