Skip to content

Commit

Permalink
Merge branch 'hotfix/0.12.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
juliencruz committed Jun 10, 2015
2 parents 9a69bcd + b579d43 commit b4681dd
Show file tree
Hide file tree
Showing 20 changed files with 25 additions and 24 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

<groupId>streamflow</groupId>
<artifactId>streamflow</artifactId>
<version>0.12.0</version>
<version>0.12.1</version>
<packaging>pom</packaging>

<name>StreamFlow</name>
Expand Down
2 changes: 1 addition & 1 deletion streamflow-annotations/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<groupId>streamflow</groupId>
<artifactId>streamflow</artifactId>
<version>0.12.0</version>
<version>0.12.1</version>
</parent>

<artifactId>streamflow-annotations</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion streamflow-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>streamflow</groupId>
<artifactId>streamflow</artifactId>
<version>0.12.0</version>
<version>0.12.1</version>
</parent>

<artifactId>streamflow-core</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion streamflow-core/streamflow-app/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>streamflow</groupId>
<artifactId>streamflow-core</artifactId>
<version>0.12.0</version>
<version>0.12.1</version>
</parent>

<artifactId>streamflow-app</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion streamflow-core/streamflow-app/streamflow-app-jar/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>streamflow</groupId>
<artifactId>streamflow-app</artifactId>
<version>0.12.0</version>
<version>0.12.1</version>
</parent>

<artifactId>streamflow-app-jar</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion streamflow-core/streamflow-app/streamflow-app-war/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>streamflow</groupId>
<artifactId>streamflow-app</artifactId>
<version>0.12.0</version>
<version>0.12.1</version>
</parent>

<artifactId>streamflow-app-war</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion streamflow-core/streamflow-datastore/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>streamflow</groupId>
<artifactId>streamflow-core</artifactId>
<version>0.12.0</version>
<version>0.12.1</version>
</parent>

<artifactId>streamflow-datastore</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>streamflow</groupId>
<artifactId>streamflow-datastore</artifactId>
<version>0.12.0</version>
<version>0.12.1</version>
</parent>

<artifactId>streamflow-datastore-core</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>streamflow</groupId>
<artifactId>streamflow-datastore</artifactId>
<version>0.12.0</version>
<version>0.12.1</version>
</parent>

<artifactId>streamflow-datastore-jdbc</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>streamflow</groupId>
<artifactId>streamflow-datastore</artifactId>
<version>0.12.0</version>
<version>0.12.1</version>
</parent>

<artifactId>streamflow-datastore-mongodb</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion streamflow-core/streamflow-engine/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>streamflow</groupId>
<artifactId>streamflow-core</artifactId>
<version>0.12.0</version>
<version>0.12.1</version>
</parent>

<artifactId>streamflow-engine</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -199,18 +199,19 @@ private Config buildStormConfig(StreamflowConfig streamflowConfig,
}

private Object loadProperty(String stringValue) {
Object boundValue;
// Default to using the string value
Object boundValue = stringValue;

try {
boundValue = Long.parseLong(stringValue);
} catch (NumberFormatException ex1) {
try {
boundValue = Double.parseDouble(stringValue);
} catch (NumberFormatException ex2) {
try {
boundValue = Boolean.parseBoolean(stringValue);
} catch (NumberFormatException ex3) {
boundValue = stringValue;
if (stringValue.equalsIgnoreCase("true")) {
boundValue = Boolean.TRUE;
} else if (stringValue.equalsIgnoreCase("false")) {
boundValue = Boolean.FALSE;
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion streamflow-core/streamflow-model/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>streamflow</groupId>
<artifactId>streamflow-core</artifactId>
<version>0.12.0</version>
<version>0.12.1</version>
</parent>

<artifactId>streamflow-model</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion streamflow-core/streamflow-server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>streamflow</groupId>
<artifactId>streamflow-core</artifactId>
<version>0.12.0</version>
<version>0.12.1</version>
</parent>

<artifactId>streamflow-server</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion streamflow-core/streamflow-service/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>streamflow</groupId>
<artifactId>streamflow-core</artifactId>
<version>0.12.0</version>
<version>0.12.1</version>
</parent>

<artifactId>streamflow-service</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion streamflow-core/streamflow-util/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>streamflow</groupId>
<artifactId>streamflow-core</artifactId>
<version>0.12.0</version>
<version>0.12.1</version>
</parent>

<artifactId>streamflow-util</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion streamflow-dist/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>streamflow</groupId>
<artifactId>streamflow</artifactId>
<version>0.12.0</version>
<version>0.12.1</version>
</parent>

<artifactId>streamflow-dist</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion streamflow-frameworks/core-framework/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>streamflow</groupId>
<artifactId>streamflow-frameworks</artifactId>
<version>0.12.0</version>
<version>0.12.1</version>
</parent>

<artifactId>core-framework</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion streamflow-frameworks/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>streamflow</groupId>
<artifactId>streamflow</artifactId>
<version>0.12.0</version>
<version>0.12.1</version>
</parent>

<artifactId>streamflow-frameworks</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion streamflow-frameworks/twitter-framework/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>streamflow</groupId>
<artifactId>streamflow-frameworks</artifactId>
<version>0.12.0</version>
<version>0.12.1</version>
</parent>

<artifactId>twitter-framework</artifactId>
Expand Down

0 comments on commit b4681dd

Please sign in to comment.