Skip to content

Commit 5c68167

Browse files
committed
Merge branch '1.1.1'
Signed-off-by: James Sutton <james.sutton@uk.ibm.com>
2 parents 28ae3dd + fee6d36 commit 5c68167

87 files changed

Lines changed: 1774 additions & 660 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/ISSUE_TEMPLATE.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Please fill out the form below before submitting, thank you!
22

3-
- [ ] Bug exists Release Version 1.1.0 ( Master Branch)
4-
- [ ] Bug exists in Snapshot Version 1.1.1-SNAPSHOT (Develop Branch)
3+
- [ ] Bug exists Release Version 1.1.1 ( Master Branch)
4+
- [ ] Bug exists in Snapshot Version 1.1.2-SNAPSHOT (Develop Branch)
55

66
If this is a bug regarding the Android Service, please raise the bug here instead: https://github.com/eclipse/paho.mqtt.android/issues/new

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,9 @@ Eclipse hosts a Nexus repository for those who want to use Maven to manage their
3131
Add the repository definition and the dependency definition shown below to your pom.xml.
3232

3333
Replace %REPOURL% with either ``` https://repo.eclipse.org/content/repositories/paho-releases/ ``` for the official releases, or ``` https://repo.eclipse.org/content/repositories/paho-snapshots/ ``` for the nightly snapshots. Replace %VERSION% with the level required .
34-
The latest release version is ```1.1.0``` and the current snapshot version is ```1.1.1-SNAPSHOT```.
34+
35+
The latest release version is ```1.1.1``` and the current snapshot version is ```1.1.2-SNAPSHOT```.
36+
3537

3638
```
3739
<project ...>

org.eclipse.paho.client.eclipse.feature/feature.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
id="org.eclipse.paho.client.eclipse.feature"
44
label="%featureName"
55
provider-name="%providerName"
6-
version="1.1.0">
6+
version="1.1.1">
7+
78

89
<description url="http://www.eclipse.org/paho/">
910
%description

org.eclipse.paho.client.eclipse.feature/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
22
<modelVersion>4.0.0</modelVersion>
3-
3+
44
<parent>
55
<groupId>org.eclipse.paho</groupId>
66
<artifactId>java-parent</artifactId>
7-
<version>1.1.0</version>
7+
<version>1.1.1</version>
88
</parent>
9-
9+
1010
<artifactId>org.eclipse.paho.client.eclipse.feature</artifactId>
1111
<packaging>eclipse-feature</packaging>
1212

org.eclipse.paho.client.eclipse.view/META-INF/MANIFEST.MF

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
22
Bundle-ManifestVersion: 2
33
Bundle-Name: %bundle.name
44
Bundle-SymbolicName: org.eclipse.paho.client.eclipse.view;singleton:=true
5-
Bundle-Version: 1.1.0
5+
Bundle-Version: 1.1.1
66
Bundle-Activator: org.eclipse.paho.client.eclipse.view.Activator
77
Bundle-Vendor: %bundle.provider
88
Bundle-Localization: plugin

org.eclipse.paho.client.eclipse.view/pom.xml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,19 @@
44
<parent>
55
<groupId>org.eclipse.paho</groupId>
66
<artifactId>java-parent</artifactId>
7-
<version>1.1.0</version>
7+
<version>1.1.1</version>
88
</parent>
9-
9+
1010
<artifactId>org.eclipse.paho.client.eclipse.view</artifactId>
1111
<packaging>eclipse-plugin</packaging>
12-
12+
1313
<build>
1414
<plugins>
1515
<plugin>
1616
<groupId>org.eclipse.tycho</groupId>
1717
<artifactId>tycho-maven-plugin</artifactId>
1818
</plugin>
19-
19+
2020
<plugin>
2121
<groupId>org.eclipse.tycho</groupId>
2222
<artifactId>tycho-compiler-plugin</artifactId>
@@ -27,7 +27,7 @@
2727
<target>${java.version}</target>
2828
</configuration>
2929
</plugin>
30-
30+
3131
<plugin>
3232
<groupId>org.apache.maven.plugins</groupId>
3333
<artifactId>maven-resources-plugin</artifactId>
@@ -56,5 +56,4 @@
5656
</plugin>
5757
</plugins>
5858
</build>
59-
</project>
60-
59+
</project>

org.eclipse.paho.client.mqttv3.internal.traceformat/build.xml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,8 @@
77
<property name="ship.folder" value="./target/ship" />
88
<!-- classpath.folder = ship.folder of org.eclipse.paho.client.mqttv3 build.xml -->
99
<property name="classpath.folder" value="../org.eclipse.paho.client.mqttv3/target/ship" />
10-
11-
<property name="client.release.version" value="1.1.0" />
12-
<property name="bundleVersion" value="1.1.0" />
10+
<property name="client.release.version" value="1.1.1" />
11+
<property name="bundleVersion" value="1.1.1" />
1312
<property name="bundleVendor" value="Eclipse.org" />
1413
<property name="build.level" value="LYYMMDD" />
1514
<property name="paho-client-v3-trace-jar" value="org.eclipse.paho.client.mqttv3.trace.jar" />

org.eclipse.paho.client.mqttv3.repository/category.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<site>
3-
<bundle id="org.eclipse.paho.client.mqttv3" version="1.1.0">
3+
<bundle id="org.eclipse.paho.client.mqttv3" version="1.1.1">
44
<category name="Paho MQTT Java"/>
55
</bundle>
6-
<bundle id="org.eclipse.paho.client.eclipse.view" version="1.1.0">
6+
<bundle id="org.eclipse.paho.client.eclipse.view" version="1.1.1">
77
<category name="Paho MQTT Java"/>
88
</bundle>
99
<category-def name="Paho MQTT Java" label="Paho MQTT Java">

org.eclipse.paho.client.mqttv3.repository/pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@
33
<parent>
44
<groupId>org.eclipse.paho</groupId>
55
<artifactId>java-parent</artifactId>
6-
<version>1.1.0</version>
6+
<version>1.1.1</version>
77
</parent>
8-
8+
99
<artifactId>org.eclipse.paho.client.mqttv3.repository</artifactId>
1010
<packaging>eclipse-repository</packaging>
11-
11+
1212
<name>Paho P2 Repository</name>
13-
13+
1414
<build>
1515
<plugins>
1616
<plugin>
@@ -60,7 +60,7 @@
6060
<sourceLocation>${project.build.directory}/repository</sourceLocation>
6161
</configuration>
6262
</execution>
63-
</executions>
63+
</executions>
6464
</plugin> -->
6565
</plugins>
6666
</build>

org.eclipse.paho.client.mqttv3.test/pom.xml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>org.eclipse.paho</groupId>
66
<artifactId>java-parent</artifactId>
7-
<version>1.1.0</version>
7+
<version>1.1.1</version>
88
</parent>
99

1010
<artifactId>org.eclipse.paho.client.mqttv3.test</artifactId>
@@ -47,13 +47,14 @@
4747
<artifactId>maven-surefire-plugin</artifactId>
4848
<version>2.15</version>
4949
<configuration>
50+
<reuseForks>false</reuseForks>
51+
<forkCount>1</forkCount>
5052
<systemPropertyVariables>
5153
<SERVER_URI>${test.server_uri}</SERVER_URI>
5254
</systemPropertyVariables>
5355
<excludes>
5456
<exclude>${test.exclude}</exclude>
5557
</excludes>
56-
<excludedGroups>org.eclipse.paho.client.mqttv3.test.ManualTest</excludedGroups>
5758
</configuration>
5859
</plugin>
5960
</plugins>
@@ -63,7 +64,7 @@
6364
<dependency>
6465
<groupId>org.eclipse.paho</groupId>
6566
<artifactId>org.eclipse.paho.client.mqttv3</artifactId>
66-
<version>1.1.0</version>
67+
<version>1.1.1</version>
6768
</dependency>
6869

6970
<dependency>

0 commit comments

Comments
 (0)