Skip to content

Commit

Permalink
Renamed leshan-client-standalone to leshan-client-example
Browse files Browse the repository at this point in the history
  • Loading branch information
Josh Larson committed Oct 17, 2014
1 parent 33ad465 commit 25db793
Show file tree
Hide file tree
Showing 5 changed files with 99 additions and 2 deletions.
97 changes: 97 additions & 0 deletions leshan-client-example/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,97 @@
<!--
Copyright (c) 2013, Sierra Wireless,
Copyright (c) 2014, Zebra Technologies,
All rights reserved.
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
* Neither the name of {{ project }} nor the names of its contributors
may be used to endorse or promote products derived from this software
without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-->
<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.github.leshan</groupId>
<artifactId>leshan-server</artifactId>
<version>0.1.7-SNAPSHOT</version>
</parent>
<artifactId>leshan-client-example</artifactId>
<packaging>jar</packaging>

<name>leshan - client example</name>
<description>A demonstration client built upon the Leshan core.</description>
<url>http://maven.apache.org</url>


<properties>
<internal.repo.path>file://${basedir}/../../leshan-repo</internal.repo.path>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<dependencies>
<dependency>
<groupId>org.github.leshan</groupId>
<artifactId>leshan-core</artifactId>
<version>${project.version}</version>
<type>jar</type>
</dependency>
<dependency>
<groupId>org.github.leshan</groupId>
<artifactId>leshan-client</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.4</version>
<configuration>
<archive>
<manifest>
<mainClass>leshan.client.example.LeshanDevice</mainClass>
</manifest>
</archive>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</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>
</plugins>
</build>
</project>
File renamed without changes.
2 changes: 1 addition & 1 deletion leshan-client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
</parent>
<artifactId>leshan-client</artifactId>
<packaging>jar</packaging>
<name>leshan-client</name>
<name>leshan - client</name>
<description>A LWM2M client built upon the Leshan core.</description>

<properties>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
<module>leshan-standalone</module>
<module>leshan-bs-server</module>
<module>leshan-client</module>
<module>leshan-client-standalone</module>
<module>leshan-client-example</module>
</modules>

<scm>
Expand Down

0 comments on commit 25db793

Please sign in to comment.