Browse Source

Updates examples to Feign 7.2.1

pull/179/head
Adrian Cole 10 years ago
parent
commit
c53b1773ae
  1. 4
      example-github/README.md
  2. 4
      example-github/build.gradle
  3. 2
      example-github/pom.xml
  4. 4
      example-wikipedia/build.gradle
  5. 2
      example-wikipedia/pom.xml

4
example-github/README.md

@ -4,7 +4,7 @@ GitHub Example @@ -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
example-github/build.gradle

@ -12,8 +12,8 @@ configurations { @@ -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

2
example-github/pom.xml

@ -12,7 +12,7 @@ @@ -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>

4
example-wikipedia/build.gradle

@ -12,8 +12,8 @@ configurations { @@ -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

2
example-wikipedia/pom.xml

@ -12,7 +12,7 @@ @@ -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>

Loading…
Cancel
Save