Skip to content

Commit cef1f7e

Browse files
committed
Merge branch 'develop' into feature/bug-634-file-persistence-npe-2
2 parents e3f8f3a + da0c59a commit cef1f7e

303 files changed

Lines changed: 1937 additions & 1624 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: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
Please fill out the form below before submitting, thank you!
2+
3+
- [ ] Bug exists Release Version 1.2.0 ( Master Branch)
4+
- [ ] Bug exists in MQTTv3 Client on Snapshot Version 1.2.1-SNAPSHOT (Develop Branch)
5+
- [ ] Bug exists in MQTTv5 Client on Snapshot Version 1.2.1-SNAPSHOT (Develop Branch)
6+
7+
If this is a bug regarding the Android Service, please raise the bug here instead: https://github.com/eclipse/paho.mqtt.android/issues/new

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
Please make sure that the following boxes are checked before submitting your Pull Request, thank you!
2+
3+
- [ ] This change is against the develop branch, **not** master.
4+
- [ ] You have signed the [Eclipse ECA](https://wiki.eclipse.org/ECA)
5+
- [ ] All of your commits have been signed-off with the correct email address (The same one that you used to sign the CLA) _Hint: use the -s argument when committing_.
6+
- [ ] If This PR fixes an issue, that you reference the issue below. OR if this is a new issue that you are fixing straight away that you add some Description about the bug and how this will fix it.
7+
- [ ] If this is new functionality, You have added the appropriate Unit tests.

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ before_install:
2121
script:
2222
- mvn -B clean -q
2323
- mvn -B --projects org.eclipse.paho.client.mqttv3,org.eclipse.paho.client.mqttv3.test test -q
24-
- mvn -B --projects org.eclipse.paho.mqttv5.common,org.eclipse.paho.mqttv5.client,org.eclipse.paho.mqttv5.client.test test -q
24+
# - mvn -B --projects org.eclipse.paho.mqttv5.common,org.eclipse.paho.mqttv5.client,org.eclipse.paho.mqttv5.client.test test -q
2525

2626
#addons:
2727
# apt:

LICENSE

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
Eclipse Public License - v 2.0
2+
3+
This program and the accompanying materials
4+
are made available under the terms of the Eclipse Public License v2.0
5+
and Eclipse Distribution License v1.0 which accompany this distribution.
6+
7+
The Eclipse Public License is available at
8+
https://www.eclipse.org/legal/epl-2.0/
9+
and the Eclipse Distribution License is available at
10+
https://www.eclipse.org/org/documents/edl-v10.php
11+
12+
For an explanation of what dual-licensing means to you, see:
13+
https://www.eclipse.org/legal/eplfaq.php#DUALLIC

MQTTv3.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Eclipse hosts a Nexus repository for those who want to use Maven to manage their
1111
Add the repository definition and the dependency definition shown below to your pom.xml.
1212

1313
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 .
14-
The latest release version is ```1.2.0``` and the current snapshot version is ```1.2.1-SNAPSHOT```.
14+
The latest release version is ```1.2.1``` and the current snapshot version is ```1.2.2-SNAPSHOT```.
1515

1616
```
1717
<project ...>
@@ -114,4 +114,4 @@ connectOptions.setCustomWebSocketHeaders(properties);
114114
115115
client.connect(connectOptions);
116116
117-
```
117+
```

NOTICE

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
# Notices for Paho
2+
3+
This content is produced and maintained by the Eclipse Paho project.
4+
5+
* Project home: https://projects.eclipse.org/projects/iot.paho
6+
7+
## Trademarks
8+
9+
Eclipse Paho is a trademark of the Eclipse Foundation.
10+
Eclipse, and the Eclipse Logo are registered trademarks of the Eclipse Foundation.
11+
12+
## Copyright
13+
14+
All content is the property of the respective authors or their employers.
15+
For more information regarding authorship of content, please consult the
16+
listed source code repository logs.
17+
18+
## Declared Project Licenses
19+
20+
This program and the accompanying materials
21+
* are made available under the terms of the Eclipse Public License v2.0
22+
* and Eclipse Distribution License v1.0 which accompany this distribution.
23+
*
24+
* The Eclipse Public License is available at
25+
* https://www.eclipse.org/legal/epl-2.0/
26+
* and the Eclipse Distribution License is available at
27+
* https://www.eclipse.org/org/documents/edl-v10.php
28+
29+
SPDX-License-Identifier: EPL-2.0
30+
31+
## Source Code
32+
33+
Some of the project maintains the following relevant source code repositories:
34+
35+
* https://github.com/eclipse/paho.mqtt.java
36+
* https://github.com/eclipse/paho.mqtt.testing
37+
38+
## Third-party Content
39+
40+
41+
## Cryptography
42+
43+
Content may contain encryption software. The country in which you are currently
44+
may have restrictions on the import, possession, and use, and/or re-export to
45+
another country, of encryption software. BEFORE using any encryption software,
46+
please check the country's laws, regulations and policies concerning the import,
47+
possession, or use, and re-export of encryption software, to see if this is
48+
permitted.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
The Paho Java Client is an MQTT client library written in Java for developing applications that run on the JVM or other Java compatible platforms such as Android
55

6-
The Paho Java Client provides two APIs: MqttAsyncClient provides a fully asychronous API where completion of activities is notified via registered callbacks. MqttClient is a synchronous wrapper around MqttAsyncClient where functions appear synchronous to the application.
6+
The Paho Java Client provides two APIs: MqttAsyncClient provides a fully asynchronous API where completion of activities is notified via registered callbacks. MqttClient is a synchronous wrapper around MqttAsyncClient where functions appear synchronous to the application.
77

88

99
## Project description:
@@ -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.2.0``` and the current snapshot version is ```1.2.1-SNAPSHOT```.
35+
The latest release version is ```1.2.1``` and the current snapshot version is ```1.2.2-SNAPSHOT```.
3636

3737

3838
```

about.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,16 @@
66
<body lang="EN-US">
77
<h2>About This Content</h2>
88

9-
<p><em>December 9, 2013</em></p>
9+
<p><em>September 23, 2019</em></p>
1010
<h3>License</h3>
1111

1212
<p>The Eclipse Foundation makes available all content in this plug-in ("Content"). Unless otherwise
1313
indicated below, the Content is provided to you under the terms and conditions of the
14-
Eclipse Public License Version 1.0 ("EPL") and Eclipse Distribution License Version 1.0 ("EDL").
14+
Eclipse Public License Version 2.0 ("EPL") and Eclipse Distribution License Version 1.0 ("EDL").
1515
A copy of the EPL is available at
16-
<a href="http://www.eclipse.org/legal/epl-v10.html">http://www.eclipse.org/legal/epl-v10.html</a>
16+
<a href="https://www.eclipse.org/legal/epl-2.0">https://www.eclipse.org/legal/epl-2.0</a>
1717
and a copy of the EDL is available at
18-
<a href="http://www.eclipse.org/org/documents/edl-v10.php">http://www.eclipse.org/org/documents/edl-v10.php</a>.
18+
<a href="https://www.eclipse.org/org/documents/edl-v10.php">https://www.eclipse.org/org/documents/edl-v10.php</a>.
1919
For purposes of the EPL, "Program" will mean the Content.</p>
2020

2121
<p>If you did not receive this Content directly from the Eclipse Foundation, the Content is

epl-v10

Lines changed: 0 additions & 70 deletions
This file was deleted.

0 commit comments

Comments
 (0)