Skip to content

Commit e36f2ec

Browse files
committed
Merging in Version 1.2.0
Signed-off-by: James Sutton <james.sutton@uk.ibm.com>
2 parents b6b256f + dba534d commit e36f2ec

File tree

78 files changed

+2157
-1076
lines changed

Some content is hidden

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

78 files changed

+2157
-1076
lines changed

.travis.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,23 @@
1+
sudo: true
12
language: java
3+
4+
matrix:
5+
include:
6+
- os: linux
7+
dist: trusty
8+
sudo: required
9+
# - os: osx
10+
11+
sudo: required
12+
13+
before_install:
14+
- ./travis-install.sh
15+
16+
script: mvn --projects org.eclipse.paho.client.mqttv3,org.eclipse.paho.client.mqttv3.test test -Dtest.server_ssl_port=18885 -Dtest.server_uri=tcp://localhost:1883 -Dtest.server_websocket_uri=ws://localhost:8080 -B
17+
18+
addons:
19+
apt:
20+
sources:
21+
- sourceline: 'ppa:mosquitto-dev/mosquitto-ppa'
22+
packages:
23+
- mosquitto

CONTRIBUTING.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,6 @@ Please read the [Eclipse Foundation policy on accepting contributions via Git](h
2020

2121
## Contributing a change
2222

23-
## Contributing a change
24-
2523
1. [Fork the repository on GitHub](https://github.com/eclipse/paho.mqtt.java/fork)
2624
2. Clone the forked repository onto your computer: ``` git clone https://github.com/<your username>/paho.mqtt.java.git ```
2725
3. Create a new branch from the latest ```develop``` branch with ```git checkout -b YOUR_BRANCH_NAME origin/develop```

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Add the repository definition and the dependency definition shown below to your
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 .
3434

35-
The latest release version is ```1.1.1``` and the current snapshot version is ```1.1.2-SNAPSHOT```.
35+
The latest release version is ```1.2.0``` and the current snapshot version is ```1.2.1-SNAPSHOT```.
3636

3737

3838
```

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

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

98
<description url="http://www.eclipse.org/paho/">
109
%description

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

Lines changed: 1 addition & 1 deletion
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.1</version>
7+
<version>1.2.0</version>
88
</parent>
99

1010
<artifactId>org.eclipse.paho.client.eclipse.feature</artifactId>

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.1
5+
Bundle-Version: 1.2.0
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: 1 addition & 1 deletion
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.1</version>
7+
<version>1.2.0</version>
88
</parent>
99

1010
<artifactId>org.eclipse.paho.client.eclipse.view</artifactId>

org.eclipse.paho.client.eclipse.view/src/org/eclipse/paho/client/eclipse/view/Activator.java

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
1-
/*
1+
/*******************************************************************************
22
* Copyright (c) 2012 Eurotech Inc. All rights reserved.
33
*
44
* All rights reserved. This program and the accompanying materials
55
* are made available under the terms of the Eclipse Public License v1.0
6-
* which accompanies this distribution, and is available at
7-
* http://www.eclipse.org/legal/epl-v10.html
6+
* and Eclipse Distribution License v1.0 which accompany this distribution.
7+
*
8+
* The Eclipse Public License is available at
9+
* http://www.eclipse.org/legal/epl-v10.html
10+
* and the Eclipse Distribution License is available at
11+
* http://www.eclipse.org/org/documents/edl-v10.php.
812
*
913
* Contributors:
1014
* Chad Kienle

org.eclipse.paho.client.eclipse.view/src/org/eclipse/paho/client/eclipse/view/ClientConstants.java

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
1-
/*
1+
/*******************************************************************************
22
* Copyright (c) 2012 Eurotech Inc. All rights reserved.
33
*
44
* All rights reserved. This program and the accompanying materials
55
* are made available under the terms of the Eclipse Public License v1.0
6-
* which accompanies this distribution, and is available at
7-
* http://www.eclipse.org/legal/epl-v10.html
6+
* and Eclipse Distribution License v1.0 which accompany this distribution.
7+
*
8+
* The Eclipse Public License is available at
9+
* http://www.eclipse.org/legal/epl-v10.html
10+
* and the Eclipse Distribution License is available at
11+
* http://www.eclipse.org/org/documents/edl-v10.php.
812
*
913
* Contributors:
1014
* Chad Kienle

org.eclipse.paho.client.eclipse.view/src/org/eclipse/paho/client/eclipse/view/MqttClientView.java

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
1-
/*
1+
/*******************************************************************************
22
* Copyright (c) 2012 Eurotech Inc. All rights reserved.
33
*
44
* All rights reserved. This program and the accompanying materials
55
* are made available under the terms of the Eclipse Public License v1.0
6-
* which accompanies this distribution, and is available at
7-
* http://www.eclipse.org/legal/epl-v10.html
6+
* and Eclipse Distribution License v1.0 which accompany this distribution.
7+
*
8+
* The Eclipse Public License is available at
9+
* http://www.eclipse.org/legal/epl-v10.html
10+
* and the Eclipse Distribution License is available at
11+
* http://www.eclipse.org/org/documents/edl-v10.php.
812
*
913
* Contributors:
1014
* Chad Kienle

0 commit comments

Comments
 (0)