Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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