-
Notifications
You must be signed in to change notification settings - Fork 235
/
pom.xml
102 lines (102 loc) · 3.95 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<!-- 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</groupId>
<artifactId>device</artifactId>
<version>1.0.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>com.microsoft.azure.sdk.iot.samples</groupId>
<artifactId>iot-device-samples</artifactId>
<version>1.0.0</version>
<name>IoT Hub Java Device SDK Samples</name>
<packaging>pom</packaging>
<developers>
<developer>
<id>microsoft</id>
<name>Microsoft</name>
</developer>
</developers>
<modules>
<module>send-event</module>
<module>send-batch-events</module>
<module>send-receive-module-sample</module>
<module>handle-messages</module>
<module>send-receive-sample</module>
<module>device-twin-sample</module>
<module>direct-method-sample</module>
<module>module-twin-sample</module>
<module>module-method-sample</module>
<module>file-upload-sample</module>
<module>send-event-x509</module>
<module>send-receive-x509-sample</module>
<module>multiplexing-sample</module>
<module>module-invoke-method-sample</module>
<module>send-event-with-proxy</module>
<module>device-reconnection-sample</module>
<module>pnp-device-sample</module>
<module>custom-sas-token-provider-sample</module>
<module>unix-domain-socket-sample</module>
</modules>
<dependencies>
<dependency>
<groupId>com.microsoft.azure.sdk.iot</groupId>
<artifactId>${iot-device-client-artifact-id}</artifactId>
<version>${iot-device-client-version}</version>
</dependency>
<dependency>
<groupId>commons-cli</groupId>
<artifactId>commons-cli</artifactId>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-api</artifactId>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-slf4j-impl</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.3</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<version>2.4</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<filters>
<filter>
<artifact>*:*</artifact>
<excludes>
<exclude>META-INF/*.SF</exclude>
<exclude>META-INF/*.RSA</exclude>
</excludes>
</filter>
</filters>
<shadedArtifactAttached>true</shadedArtifactAttached>
<shadedClassifierName>with-deps</shadedClassifierName>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>