forked from Azure/azure-iot-sdk-java
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
34 lines (34 loc) · 1.07 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
<!-- Copyright (c) Microsoft. All rights reserved. -->
<!-- Licensed under the MIT license. See LICENSE file in the project root for full license information. -->
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>com.microsoft.azure.sdk.iot</groupId>
<artifactId>iot-sdk-java</artifactId>
<version>0.8.12</version>
<name>Azure IoT Sdk Java</name>
<packaging>pom</packaging>
<developers>
<developer>
<id>microsoft</id>
<name>Microsoft</name>
</developer>
</developers>
<modules>
<module>device</module>
<module>service</module>
<module>deps</module>
</modules>
<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>
</plugins>
</build>
</project>