-
Notifications
You must be signed in to change notification settings - Fork 235
/
pom.xml
38 lines (38 loc) · 1.39 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<!-- Copyright (c) Microsoft. All rights reserved. --><!-- Licensed under the MIT license. See LICENSE file in the project root for full license information. -->
<project>
<parent>
<groupId>com.microsoft.azure.sdk.iot.samples</groupId>
<artifactId>iot-device-samples</artifactId>
<version>1.0.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>com.microsoft.azure.sdk.iot.samples.device</groupId>
<artifactId>device-twin-sample</artifactId>
<name>Device Twin Sample</name>
<developers>
<developer>
<id>microsoft</id>
<name>Microsoft</name>
</developer>
</developers>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.1.0</version>
<configuration>
<archive>
<manifest>
<addClasspath>true</addClasspath>
<mainClass>samples.com.microsoft.azure.sdk.iot.DeviceTwinSample</mainClass>
</manifest>
</archive>
</configuration>
</plugin>
</plugins>
</build>
</project>