Skip to content

Commit

Permalink
Updates examples to Feign 7.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Adrian Cole committed Feb 7, 2015
1 parent 7c1558a commit c53b177
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions example-github/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ GitHub Example
This is an example of a simple json client.

=== Building example with Gradle
Install and run `gradle` to produce `build/wikipedia`
Install and run `gradle` to produce `build/github`

=== Building example with Maven
Install and run `mvn` to produce `target/wikipedia`
Install and run `mvn` to produce `target/github`
4 changes: 2 additions & 2 deletions example-github/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ configurations {
}

dependencies {
compile 'com.netflix.feign:feign-core:7.1.0'
compile 'com.netflix.feign:feign-gson:7.1.0'
compile 'com.netflix.feign:feign-core:7.2.1'
compile 'com.netflix.feign:feign-gson:7.2.1'
}

// create a self-contained jar that is executable
Expand Down
2 changes: 1 addition & 1 deletion example-github/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<groupId>com.netflix.feign</groupId>
<artifactId>feign-example-github</artifactId>
<packaging>jar</packaging>
<version>7.1.0</version>
<version>7.2.1</version>
<name>GitHub Example</name>

<dependencies>
Expand Down
4 changes: 2 additions & 2 deletions example-wikipedia/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ configurations {
}

dependencies {
compile 'com.netflix.feign:feign-core:7.1.0'
compile 'com.netflix.feign:feign-gson:7.1.0'
compile 'com.netflix.feign:feign-core:7.2.1'
compile 'com.netflix.feign:feign-gson:7.2.1'
}

// create a self-contained jar that is executable
Expand Down
2 changes: 1 addition & 1 deletion example-wikipedia/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<groupId>com.netflix.feign</groupId>
<artifactId>feign-example-wikipedia</artifactId>
<packaging>jar</packaging>
<version>7.1.0</version>
<version>7.2.1</version>
<name>Wikipedia Example</name>

<dependencies>
Expand Down

0 comments on commit c53b177

Please sign in to comment.