leshan-lwm2m-server
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.eclipse.leshan</groupId> <artifactId>leshan-lwm2m-server</artifactId> <version>2.0.0-M17</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright (c) 2013-2015 Sierra Wireless and others. All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v2.0 and Eclipse Distribution License v1.0 which accompany this distribution. The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v20.html and the Eclipse Distribution License is available at http://www.eclipse.org/org/documents/edl-v10.html. Contributors: Sierra Wireless - initial API and implementation Bosch Software Innovations GmbH - OSGi support --> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <groupId>org.eclipse.leshan</groupId> <artifactId>leshan-lwm2m-server</artifactId> <version>2.0.0-M17</version> <packaging>bundle</packaging> <name>leshan-server</name> <description>A LWM2M server implementation which abstracts transport layer. A transport implementation like "leshan-tl-cf-server-coap" is needed.</description> <url>http://eclipse.org/leshan</url> <licenses> <license> <name>EPL-2.0 OR BSD-3-Clause</name> <distribution>repo</distribution> <comments>Leshan is dual-licensed under the Eclipse Public License v2.0 and Eclipse Distribution License v1.0. A consumer can choose between that 2 licenses.</comments> </license> </licenses> <developers> <developer> <id>sbernard</id> <name>Simon Bernard</name> <email>sbernard@sierrawireless.com</email> <organization>Sierra Wireless</organization> <roles> <role>developer</role> </roles> </developer> <developer> <id>msangoi</id> <name>Manuel Sangoi</name> <email>msangoi@sierrawireless.com</email> <organization>Sierra Wireless - AirVantage</organization> <organizationUrl>http://airvantage.net</organizationUrl> <roles> <role>developer</role> </roles> </developer> <developer> <id>khudalla</id> <name>Kai Hudalla</name> <email>kai.hudalla@bosch-si.com</email> <organization>Bosch Software Innovations GmbH</organization> <organizationUrl>http://www.bosch-si.com</organizationUrl> <roles> <role>developer</role> </roles> </developer> <developer> <id>jvermillard</id> <name>Julien Vermillard</name> <email>jvermillard@sierrawireless.com</email> <organization>Sierra Wireless - AirVantage</organization> <organizationUrl>http://airvantage.net</organizationUrl> <roles> <role>developer</role> </roles> </developer> </developers> <scm child.scm.developerConnection.inherit.append.path="false" child.scm.url.inherit.append.path="false"> <developerConnection>scm:git:ssh://git@github.com/eclipse/leshan.git</developerConnection> <url>https://github.com/eclipse/leshan.git</url> </scm> <dependencies> <dependency> <groupId>org.eclipse.leshan</groupId> <artifactId>leshan-lwm2m-core</artifactId> <version>2.0.0-M17</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.eclipse.leshan</groupId> <artifactId>leshan-lwm2m-servers-shared</artifactId> <version>2.0.0-M17</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.eclipse.leshan</groupId> <artifactId>leshan-lwm2m-core</artifactId> <version>2.0.0-M17</version> <type>test-jar</type> <scope>compile</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <version>5.1.9</version> <extensions>true</extensions> </plugin> </plugins> </build> </project>