-
-
Notifications
You must be signed in to change notification settings - Fork 3.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[xmppclient] Update smack to 4.4.4 and fix dependencies #11670
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,45 +15,137 @@ | |
<name>openHAB Add-ons :: Bundles :: XMPPClient Binding</name> | ||
|
||
<properties> | ||
<smack.version>4.3.3</smack.version> | ||
<smack.version>4.4.4</smack.version> | ||
<bnd.importpackage> | ||
!android.*,!sun.security.* | ||
</bnd.importpackage> | ||
</properties> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>org.igniterealtime.smack</groupId> | ||
<artifactId>smack-java7</artifactId> | ||
<artifactId>smack-core</artifactId> | ||
<version>${smack.version}</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.igniterealtime.smack</groupId> | ||
<artifactId>smack-xmlparser</artifactId> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. You usually don't want to add this dependency explicitly. |
||
<version>${smack.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.igniterealtime.smack</groupId> | ||
<artifactId>smack-xmlparser-xpp3</artifactId> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. You usually don't want to add this dependency explicitly. |
||
<version>${smack.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>xpp3</groupId> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Smack on Java SE does not use xpp3, so it should be possible to drop this. |
||
<artifactId>xpp3</artifactId> | ||
<version>1.1.4c</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.jxmpp</groupId> | ||
<artifactId>jxmpp-core</artifactId> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. You usually don't want to add this dependency explicitly. |
||
<version>1.0.3</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.jxmpp</groupId> | ||
<artifactId>jxmpp-util-cache</artifactId> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. You usually don't want to add this dependency explicitly. |
||
<version>1.0.3</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.jxmpp</groupId> | ||
<artifactId>jxmpp-jid</artifactId> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. You usually don't want to add this dependency explicitly. |
||
<version>1.0.3</version> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.igniterealtime.smack</groupId> | ||
<artifactId>smack-java8</artifactId> | ||
<version>${smack.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.igniterealtime.smack</groupId> | ||
<artifactId>smack-sasl-javax</artifactId> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. You usually don't want to add this dependency explicitly. |
||
<version>${smack.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.igniterealtime.smack</groupId> | ||
<artifactId>smack-resolver-javax</artifactId> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. You want to add this dependency explicitly if you want to use the |
||
<version>${smack.version}</version> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.igniterealtime.smack</groupId> | ||
<artifactId>smack-extensions</artifactId> | ||
<version>${smack.version}</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.igniterealtime.smack</groupId> | ||
<artifactId>smack-im</artifactId> | ||
<version>${smack.version}</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.igniterealtime.smack</groupId> | ||
<artifactId>smack-tcp</artifactId> | ||
<version>${smack.version}</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.igniterealtime.smack</groupId> | ||
<artifactId>smack-streammanagement</artifactId> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. You usually don't want to add this dependency explicitly. |
||
<version>${smack.version}</version> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.igniterealtime.smack</groupId> | ||
<artifactId>smack-experimental</artifactId> | ||
<version>${smack.version}</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.hsluv</groupId> | ||
<artifactId>hsluv</artifactId> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. You usually don't want to add this dependency explicitly. |
||
<version>0.2</version> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.minidns</groupId> | ||
<artifactId>minidns-core</artifactId> | ||
<version>0.3.3</version> | ||
<scope>provided</scope> | ||
<version>1.0.2</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.apache.aries.spifly</groupId> | ||
<artifactId>org.apache.aries.spifly.dynamic.framework.extension</artifactId> | ||
<version>1.3.2</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.apache.aries.spifly</groupId> | ||
<artifactId>org.apache.aries.spifly.dynamic.bundle</artifactId> | ||
<version>1.3.2</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.ow2.asm</groupId> | ||
<artifactId>asm</artifactId> | ||
<version>9.0</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.ow2.asm</groupId> | ||
<artifactId>asm-commons</artifactId> | ||
<version>9.0</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.ow2.asm</groupId> | ||
<artifactId>asm-tree</artifactId> | ||
<version>9.0</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.ow2.asm</groupId> | ||
<artifactId>asm-analysis</artifactId> | ||
<version>9.0</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.ow2.asm</groupId> | ||
<artifactId>asm-util</artifactId> | ||
<version>9.0</version> | ||
</dependency> | ||
</dependencies> | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You usually don't want to add this dependency explicitly.