Skip to content

Commit 28d10c8

Browse files
Merge pull request #519 from SrinivasanTarget/master
Added .travis.yml
2 parents 1d50fc0 + 605cca6 commit 28d10c8

File tree

3 files changed

+18
-2
lines changed

3 files changed

+18
-2
lines changed

.travis.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
language: java
2+
3+
jdk:
4+
- oraclejdk8
5+
6+
before_cache:
7+
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
8+
- rm -fr $HOME/.gradle/caches/*/plugin-resolution/
9+
cache:
10+
directories:
11+
- $HOME/.gradle/caches/
12+
- $HOME/.gradle/wrapper/
13+
14+
script:
15+
- ./gradlew clean build -x test

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/io.appium/java-client/badge.svg)](https://maven-badges.herokuapp.com/maven-central/io.appium/java-client)
44
[![Javadoc](https://javadoc-emblem.rhcloud.com/doc/io.appium/java-client/badge.svg)](http://www.javadoc.io/doc/io.appium/java-client)
55
[![Codacy Badge](https://api.codacy.com/project/badge/Grade/f365c5e9458b42bf8a5b1d928d7e4f48)](https://www.codacy.com/app/appium/java-client)
6+
[![Build Status](https://travis-ci.org/appium/java-client.svg?branch=master)](https://travis-ci.org/appium/java-client)
67

78
This is the Java language binding for writing Appium Tests, conforms to [Mobile JSON Wire Protocol](https://github.com/SeleniumHQ/mobile-spec/blob/master/spec-draft.md)
89

src/test/java/io/appium/java_client/android/UIAutomator2Test.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ public class UIAutomator2Test {
2727
service.start();
2828

2929
if (service == null || !service.isRunning()) {
30-
throw new AppiumServerHasNotBeenStartedLocallyException
31-
("An appium server node is not started!");
30+
throw new AppiumServerHasNotBeenStartedLocallyException(
31+
"An appium server node is not started!");
3232
}
3333

3434
File appDir = new File("src/test/java/io/appium/java_client");

0 commit comments

Comments
 (0)