xmpp
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.snamp.gateways</groupId>
<artifactId>xmpp</artifactId>
<version>2.0.0</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<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/maven-v4_0_0.xsd">
<parent>
<artifactId>gateways</artifactId>
<groupId>io.snamp.gateways</groupId>
<version>2.0.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>xmpp</artifactId>
<packaging>bundle</packaging>
<name>XMPP Gateway</name>
<version>2.0.0</version>
<description>SNAMP Gateway for XMPP protocol</description>
<build>
<plugins>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<instructions>
<Bundle-SymbolicName>snamp-${project.artifactId}-gateway</Bundle-SymbolicName>
<Bundle-Activator>com.bytex.snamp.gateway.xmpp.XMPPGatewayActivator</Bundle-Activator>
<Export-Package>com.bytex.snamp.gateway.xmpp.client.*</Export-Package>
<Import-Package>com.bytex.snamp,
com.bytex.snamp.concurrent,
com.bytex.snamp.configuration,
com.bytex.snamp.connector.attributes,
com.bytex.snamp.core,
com.bytex.snamp.gateway,
com.bytex.snamp.gateway.modeling,
com.bytex.snamp.internal,
com.bytex.snamp.jmx,
com.bytex.snamp.json,
com.google.common.base,
com.google.common.collect,
javax.management,
javax.management.openmbean,
javax.net,
javax.net.ssl,
javax.naming,
javax.naming.directory,
javax.security.sasl,
javax.security.auth.callback,
org.codehaus.jackson,
org.codehaus.jackson.map</Import-Package>
<Provide-Capability>com.bytex.snamp.gateway; type=xmpp</Provide-Capability>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>io.snamp</groupId>
<artifactId>framework</artifactId>
<version>2.0.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<version>5.0.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.compendium</artifactId>
<version>5.0.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>19.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>io.snamp</groupId>
<artifactId>json-helpers</artifactId>
<version>2.0.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.codehaus.jackson</groupId>
<artifactId>jackson-mapper-asl</artifactId>
<version>1.9.13</version>
<scope>provided</scope>
<exclusions>
<exclusion>
<artifactId>jackson-core-asl</artifactId>
<groupId>org.codehaus.jackson</groupId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
<properties>
<smack.version>4.1.0</smack.version>
</properties>
</project>