leshan-client-demo
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.eclipse.leshan</groupId> <artifactId>leshan-client-demo</artifactId> <version>2.0.0-M7</version> </dependency>
<!-- 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: Zebra Technologies - initial API and implementation --> <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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.eclipse.leshan</groupId> <artifactId>leshan</artifactId> <version>2.0.0-M7</version> </parent> <artifactId>leshan-client-demo</artifactId> <name>leshan - client demo</name> <description>A demonstration client built upon the Leshan client.</description> <dependencies> <dependency> <groupId>org.eclipse.leshan</groupId> <artifactId>leshan-client-cf</artifactId> </dependency> <dependency> <groupId>org.eclipse.leshan</groupId> <artifactId>leshan-core-demo</artifactId> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-assembly-plugin</artifactId> <configuration> <archive> <manifest> <mainClass>org.eclipse.leshan.client.demo.LeshanClientDemo</mainClass> </manifest> </archive> <descriptors> <descriptor>../jar-with-dependencies-with-logback.xml</descriptor> </descriptors> </configuration> <executions> <execution> <id>make-assembly</id> <!-- this is used for inheritance merges --> <phase>package</phase> <!-- bind to the packaging phase --> <goals> <goal>single</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.revapi</groupId> <artifactId>revapi-maven-plugin</artifactId> <configuration> <skip>true</skip> </configuration> </plugin> </plugins> </build> </project>