Skip to content

Commit

Permalink
doc(README): tweak install how-to
Browse files Browse the repository at this point in the history
  • Loading branch information
medavox committed Aug 31, 2019
1 parent 1d56d62 commit 334232e
Showing 1 changed file with 22 additions and 22 deletions.
44 changes: 22 additions & 22 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,40 +15,40 @@ First, add the jitpack repository if youhaven't already:

`gradle`
``` gradle
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
```

`maven`
``` maven
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
``` xml
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
```

Then add this library to your project:

`gradle`
``` gradle
dependencies {
implementation 'com.github.medavox:IPA-Transcribers:v0.1'
}
dependencies {
implementation 'com.github.medavox:IPA-Transcribers:v0.1'
}
```

`maven`
```
<dependency>
<groupId>com.github.medavox</groupId>
<artifactId>IPA-Transcribers</artifactId>
<version>v0.1</version>
</dependency>
``` xml
<dependency>
<groupId>com.github.medavox</groupId>
<artifactId>IPA-Transcribers</artifactId>
<version>v0.1</version>
</dependency>
```

## Language Support
Expand Down

0 comments on commit 334232e

Please sign in to comment.