Skip to content

Commit

Permalink
Merge pull request #39 from mrmike/pipe/jcenter-deploy
Browse files Browse the repository at this point in the history
Verify deployment pipe
  • Loading branch information
mrmike committed Jan 28, 2018
2 parents 6e32ec7 + 60438f1 commit f38d88d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -3,15 +3,15 @@
Convert OkHttp requests into curl logs.

## Usage
Add library to project dependencies.
Add library to project dependencies. Library is available on jcenter repository.
```groovy
repositories {
jcenter()
}
dependencies {
// or use specific version
compile 'com.github.mrmike:Ok2Curl:0.4.2'
compile 'com.github.mrmike:Ok2Curl:0.4.3'
}
```

Expand Down
2 changes: 1 addition & 1 deletion ok2curl/build.gradle
Expand Up @@ -4,7 +4,7 @@ apply plugin: 'maven-publish'
apply plugin: 'com.jfrog.bintray'

group='com.github.mrmike'
version='0.4.2'
version='0.4.3'

targetCompatibility = '1.7'
sourceCompatibility = '1.7'
Expand Down
4 changes: 2 additions & 2 deletions sample/build.gradle
Expand Up @@ -34,14 +34,14 @@ dependencies {
implementation project(':ok2curl')

/**
* implementation 'com.github.mrmike:ok2curl:0.4.2'
* implementation 'com.github.mrmike:ok2curl:0.4.3'
*/

/**
* Ok2Curl is packed with the latest version of OkHttp. If you already have OkHttp declared in
* your dependencies or want to use different version simply add exclude module.
*
* implementation ('com.github.mrmike:ok2curl:0.4.1') {
* implementation ('com.github.mrmike:ok2curl:0.4.3') {
* exclude module: 'okhttp'
* }
*/
Expand Down

0 comments on commit f38d88d

Please sign in to comment.