Skip to content

Commit

Permalink
release 0.1.4 (#56)
Browse files Browse the repository at this point in the history
ZhijunZhao authored and xscript committed Oct 9, 2017
1 parent ff16cef commit 27e391c
Showing 4 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions azure-functions-maven-plugin/pom.xml
Original file line number Diff line number Diff line change
@@ -6,7 +6,7 @@

<groupId>com.microsoft.azure</groupId>
<artifactId>azure-functions-maven-plugin</artifactId>
<version>0.1.4-SNAPSHOT</version>
<version>0.1.4</version>
<packaging>maven-plugin</packaging>
<name>Maven Plugin for Azure Functions</name>
<description>Maven Plugin for Azure Functions</description>
@@ -22,8 +22,8 @@
<maven.plugin-testing.version>3.3.0</maven.plugin-testing.version>
<codehaus.plexus-utils.version>3.0.20</codehaus.plexus-utils.version>
<azure.ai.version>1.0.9</azure.ai.version>
<azure.maven-plugin-lib.version>0.1.4-SNAPSHOT</azure.maven-plugin-lib.version>
<azure.function.version>1.1-SNAPSHOT</azure.function.version>
<azure.maven-plugin-lib.version>0.1.4</azure.maven-plugin-lib.version>
<azure.function.version>1.0.0-beta-1</azure.function.version>
<azure.storage.version>5.4.0</azure.storage.version>
<reflections.version>0.9.11</reflections.version>
<zeroturnaround.zip.version>1.12</zeroturnaround.zip.version>
2 changes: 1 addition & 1 deletion azure-maven-plugin-lib/pom.xml
Original file line number Diff line number Diff line change
@@ -6,7 +6,7 @@

<groupId>com.microsoft.azure</groupId>
<artifactId>azure-maven-plugin-lib</artifactId>
<version>0.1.4-SNAPSHOT</version>
<version>0.1.4</version>
<packaging>jar</packaging>
<name>Azure Maven Plugin Library</name>
<description>Common library for Azure Maven Plugins</description>
Original file line number Diff line number Diff line change
@@ -165,7 +165,7 @@ public String getSessionId() {
}

public String getInstallationId() {
return installationId;
return installationId == null ? "" : installationId;
}

public String getPluginName() {
4 changes: 2 additions & 2 deletions azure-webapp-maven-plugin/pom.xml
Original file line number Diff line number Diff line change
@@ -6,7 +6,7 @@

<groupId>com.microsoft.azure</groupId>
<artifactId>azure-webapp-maven-plugin</artifactId>
<version>0.1.4-SNAPSHOT</version>
<version>0.1.4</version>
<packaging>maven-plugin</packaging>
<name>Maven Plugin for Azure Web Apps</name>
<description>Maven Plugin for Azure Web Apps</description>
@@ -22,7 +22,7 @@
<maven.plugin-testing.version>3.3.0</maven.plugin-testing.version>
<codehaus.plexus-utils.version>3.0.20</codehaus.plexus-utils.version>
<azure.ai.version>1.0.9</azure.ai.version>
<azure.maven-plugin-lib.version>0.1.4-SNAPSHOT</azure.maven-plugin-lib.version>
<azure.maven-plugin-lib.version>0.1.4</azure.maven-plugin-lib.version>
<junit.version>4.12</junit.version>
<mockito.version>2.4.0</mockito.version>
<spring-test.version>4.1.6.RELEASE</spring-test.version>

0 comments on commit 27e391c

Please sign in to comment.