Skip to content

Commit

Permalink
Merge branch '3.x' into master-3.x
Browse files Browse the repository at this point in the history
  • Loading branch information
wes-johnson committed Nov 12, 2024
2 parents b3c5b97 + 3d7a425 commit c294d60
Show file tree
Hide file tree
Showing 17 changed files with 21 additions and 20 deletions.
2 changes: 1 addition & 1 deletion java/compat_impl/edge/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<parent>
<groupId>org.eclipse.tahu</groupId>
<artifactId>tahu</artifactId>
<version>1.0.11</version>
<version>1.0.12</version>
<relativePath>../../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion java/compat_impl/host/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<parent>
<groupId>org.eclipse.tahu</groupId>
<artifactId>tahu</artifactId>
<version>1.0.11</version>
<version>1.0.12</version>
<relativePath>../../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion java/examples/device_timestamp/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<parent>
<groupId>org.eclipse.tahu</groupId>
<artifactId>tahu-examples</artifactId>
<version>1.0.11</version>
<version>1.0.12</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion java/examples/edge_node_control/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<parent>
<groupId>org.eclipse.tahu</groupId>
<artifactId>tahu-examples</artifactId>
<version>1.0.11</version>
<version>1.0.12</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion java/examples/host_file/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<parent>
<groupId>org.eclipse.tahu</groupId>
<artifactId>tahu-examples</artifactId>
<version>1.0.11</version>
<version>1.0.12</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion java/examples/listener/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<parent>
<groupId>org.eclipse.tahu</groupId>
<artifactId>tahu-examples</artifactId>
<version>1.0.11</version>
<version>1.0.12</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion java/examples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

<groupId>org.eclipse.tahu</groupId>
<artifactId>tahu-examples</artifactId>
<version>1.0.11</version>
<version>1.0.12</version>
<packaging>pom</packaging>

<name>Eclipse Tahu</name>
Expand Down
2 changes: 1 addition & 1 deletion java/examples/raspberry_pi/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<parent>
<groupId>org.eclipse.tahu</groupId>
<artifactId>tahu-examples</artifactId>
<version>1.0.11</version>
<version>1.0.12</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion java/examples/records/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<parent>
<groupId>org.eclipse.tahu</groupId>
<artifactId>tahu-examples</artifactId>
<version>1.0.11</version>
<version>1.0.12</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion java/examples/simple/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<parent>
<groupId>org.eclipse.tahu</groupId>
<artifactId>tahu-examples</artifactId>
<version>1.0.11</version>
<version>1.0.12</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion java/examples/udt/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<parent>
<groupId>org.eclipse.tahu</groupId>
<artifactId>tahu-examples</artifactId>
<version>1.0.11</version>
<version>1.0.12</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion java/lib/core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<parent>
<groupId>org.eclipse.tahu</groupId>
<artifactId>tahu</artifactId>
<version>1.0.11</version>
<version>1.0.12</version>
<relativePath>../../pom.xml</relativePath>
</parent>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,14 +66,15 @@ public class Metric {
private Boolean isTransient;

@JsonProperty("metaData")
@JsonInclude(Include.NON_EMPTY)
private MetaData metaData;

@JsonProperty("properties")
@JsonInclude(Include.NON_EMPTY)
private PropertySet properties;

@JsonProperty("value")
@JsonInclude(Include.NON_EMPTY)
@JsonInclude(Include.ALWAYS)
private Object value;

private Boolean isNull = null;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,13 +85,13 @@ public class TahuClient implements MqttCallbackExtended {
/*
* Other standard MQTT parameters.
*/
private MqttServerUrl mqttServerUrl;
private MqttServerName mqttServerName;
private final MqttServerUrl mqttServerUrl;
private final MqttServerName mqttServerName;
private final MqttClientId clientId;
private String username;
private String password;
private boolean cleanSession;
private int keepAlive;
private final boolean cleanSession;
private final int keepAlive;

/*
* The callback client
Expand Down
2 changes: 1 addition & 1 deletion java/lib/edge/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<parent>
<groupId>org.eclipse.tahu</groupId>
<artifactId>tahu</artifactId>
<version>1.0.11</version>
<version>1.0.12</version>
<relativePath>../../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion java/lib/host/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<parent>
<groupId>org.eclipse.tahu</groupId>
<artifactId>tahu</artifactId>
<version>1.0.11</version>
<version>1.0.12</version>
<relativePath>../../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@

<groupId>org.eclipse.tahu</groupId>
<artifactId>tahu</artifactId>
<version>1.0.11</version>
<version>1.0.12</version>
<packaging>pom</packaging>

<name>Eclipse Tahu</name>
Expand Down

0 comments on commit c294d60

Please sign in to comment.