Skip to content

Commit f9f39ab

Browse files
Merge pull request #154 from apigee/Issue153
Fix for #153
2 parents 3bf2488 + ba65393 commit f9f39ab

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<packaging>maven-plugin</packaging>
2020
<!-- This is inherited from <version>0.0.15</version> of the the non-opensource
2121
plugin -->
22-
<version>2.0.5-SNAPSHOT</version>
22+
<version>2.1.0-SNAPSHOT</version>
2323
<name>apigee-edge-maven-plugin maven mojo</name>
2424
<url>http://maven.apache.org</url>
2525

samples/mockapi-recommended/src/gateway/shared-pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@
7373
<plugin>
7474
<groupId>io.apigee.build-tools.enterprise4g</groupId>
7575
<artifactId>apigee-edge-maven-plugin</artifactId>
76-
<version>2.0.4</version>
76+
<version>2.1.0</version>
7777
<executions>
7878
<execution>
7979
<id>configure-bundle</id>

samples/security-sharedflow/src/sharedflows/parent-sharedflow-pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@
7373
<plugin>
7474
<groupId>io.apigee.build-tools.enterprise4g</groupId>
7575
<artifactId>apigee-edge-maven-plugin</artifactId>
76-
<version>2.0.4</version>
76+
<version>2.1.0</version>
7777
<executions>
7878
<execution>
7979
<id>configure-bundle</id>

src/main/java/io/apigee/buildTools/enterprise4g/rest/RestUtil.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -945,7 +945,8 @@ else if(profile.getServiceAccountJSONFile()!=null && !profile.getServiceAccountJ
945945
logger.error(e.getMessage());
946946
throw new IOException(e.getMessage());
947947
}
948-
948+
//fix for Issue153
949+
headers.set("X-GOOG-API-FORMAT-VERSION", 2);
949950
logger.info(PrintUtil.formatRequest(request));
950951
return request.execute();
951952
}

0 commit comments

Comments
 (0)