File tree Expand file tree Collapse file tree 1 file changed +22
-22
lines changed Expand file tree Collapse file tree 1 file changed +22
-22
lines changed Original file line number Diff line number Diff line change @@ -25,44 +25,44 @@ Java client project is available to use even before it is officially published t
2525
2626 - Add the following to pom.xml:
2727
28- ```
29- <repositories>
30- <repository>
31- <id>jitpack.io</id>
32- <url>https://jitpack.io</url>
33- </repository>
34- </repositories>
28+ ``` xml
29+ <repositories >
30+ <repository >
31+ <id >jitpack.io</id >
32+ <url >https://jitpack.io</url >
33+ </repository >
34+ </repositories >
3535```
3636
3737 - Add the dependency:
3838
39- ```
40- <dependency>
41- <groupId>com.github.appium</groupId>
42- <artifactId>java-client</artifactId>
43- <version>latest commit ID from master branch</version>
44- </dependency>
39+ ``` xml
40+ <dependency >
41+ <groupId >com.github.appium</groupId >
42+ <artifactId >java-client</artifactId >
43+ <version >latest commit ID from master branch</version >
44+ </dependency >
4545```
4646
4747### Gradle
4848
4949 - Add the JitPack repository to your build file. Add it in your root build.gradle at the end of repositories:
5050
5151```
52- allprojects {
53- repositories {
54- ...
55- maven { url 'https://jitpack.io' }
56- }
57- }
52+ allprojects {
53+ repositories {
54+ ...
55+ maven { url 'https://jitpack.io' }
56+ }
57+ }
5858```
5959
6060 - Add the dependency:
6161
6262```
63- dependencies {
64- implementation 'com.github.appium:java-client:latest commit id from master branch'
65- }
63+ dependencies {
64+ implementation 'com.github.appium:java-client:latest commit id from master branch'
65+ }
6666```
6767
6868## Changelog
You can’t perform that action at this time.
0 commit comments