forked from Azure/azure-iot-sdk-java
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
78 lines (77 loc) · 3.53 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
<!-- 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.26.0</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>
<module>iot-e2e-tests</module>
<module>provisioning</module>
</modules>
<properties>
<iot-device-client-artifact-id>iot-device-client</iot-device-client-artifact-id>
<iot-service-client-artifact-id>iot-service-client</iot-service-client-artifact-id>
<iot-deps-artifact-id>iot-deps</iot-deps-artifact-id>
<provisioning-device-client-artifact-id>provisioning-device-client</provisioning-device-client-artifact-id>
<provisioning-service-client-artifact-id>provisioning-service-client</provisioning-service-client-artifact-id>
<security-provider-artifact-id>security-provider</security-provider-artifact-id>
<tpm-provider-emulator-artifact-id>tpm-provider-emulator</tpm-provider-emulator-artifact-id>
<tpm-provider-artifact-id>tpm-provider</tpm-provider-artifact-id>
<dice-provider-emulator-artifact-id>dice-provider-emulator</dice-provider-emulator-artifact-id>
<dice-provider-artifact-id>dice-provider</dice-provider-artifact-id>
<x509-provider-artifact-id>x509-provider</x509-provider-artifact-id>
<iot-device-client-version>1.20.2</iot-device-client-version>
<iot-service-client-version>1.21.0</iot-service-client-version>
<iot-deps-version>0.9.2</iot-deps-version>
<provisioning-device-client-version>1.8.1</provisioning-device-client-version>
<provisioning-service-client-version>1.6.1</provisioning-service-client-version>
<security-provider-version>1.3.0</security-provider-version>
<tpm-provider-emulator-version>1.1.1</tpm-provider-emulator-version>
<tpm-provider-version>1.1.2</tpm-provider-version>
<dice-provider-emulator-version>1.1.1</dice-provider-emulator-version>
<dice-provider-version>1.1.1</dice-provider-version>
<x509-provider-version>1.1.4</x509-provider-version>
</properties>
<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>
<groupId>org.codehaus.mojo</groupId>
<artifactId>flatten-maven-plugin</artifactId>
<version>1.1.0</version>
<configuration>
<flattenMode>oss</flattenMode>
</configuration>
<executions>
<execution>
<id>flatten</id>
<phase>process-resources</phase>
<goals>
<goal>flatten</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>