|
| 1 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 2 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 3 | + <modelVersion>4.0.0</modelVersion> |
| 4 | + <groupId>software.amazon.awssdk.iotdevicesdk</groupId> |
| 5 | + <artifactId>CommandsSandbox</artifactId> |
| 6 | + <packaging>jar</packaging> |
| 7 | + <version>1.0-SNAPSHOT</version> |
| 8 | + <name>${project.groupId}:${project.artifactId}</name> |
| 9 | + <description>Interactive sample using the MQTT Commands service</description> |
| 10 | + <url>https://github.com/awslabs/aws-iot-device-sdk-java-v2</url> |
| 11 | + <properties> |
| 12 | + <maven.compiler.source>1.8</maven.compiler.source> |
| 13 | + <maven.compiler.target>1.8</maven.compiler.target> |
| 14 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 15 | + </properties> |
| 16 | + <dependencies> |
| 17 | + <dependency> |
| 18 | + <groupId>commons-cli</groupId> |
| 19 | + <artifactId>commons-cli</artifactId> |
| 20 | + <version>1.9.0</version> |
| 21 | + </dependency> |
| 22 | + <dependency> |
| 23 | + <groupId>software.amazon.awssdk</groupId> |
| 24 | + <artifactId>iot</artifactId> |
| 25 | + <version>2.31.44</version> |
| 26 | + </dependency> |
| 27 | + <dependency> |
| 28 | + <groupId>software.amazon.awssdk</groupId> |
| 29 | + <artifactId>iotjobsdataplane</artifactId> |
| 30 | + <version>2.31.44</version> |
| 31 | + </dependency> |
| 32 | + <dependency> |
| 33 | + <groupId>software.amazon.awssdk</groupId> |
| 34 | + <artifactId>sts</artifactId> |
| 35 | + <version>2.31.44</version> |
| 36 | + </dependency> |
| 37 | + </dependencies> |
| 38 | + <profiles> |
| 39 | + <profile> |
| 40 | + <id>latest-release</id> |
| 41 | + <dependencies> |
| 42 | + <dependency> |
| 43 | + <groupId>software.amazon.awssdk.iotdevicesdk</groupId> |
| 44 | + <artifactId>aws-iot-device-sdk</artifactId> |
| 45 | + <version>1.25.1</version> |
| 46 | + </dependency> |
| 47 | + </dependencies> |
| 48 | + </profile> |
| 49 | + <profile> |
| 50 | + <id>default</id> |
| 51 | + <activation> |
| 52 | + <activeByDefault>true</activeByDefault> |
| 53 | + </activation> |
| 54 | + <dependencies> |
| 55 | + <dependency> |
| 56 | + <groupId>software.amazon.awssdk.iotdevicesdk</groupId> |
| 57 | + <artifactId>aws-iot-device-sdk</artifactId> |
| 58 | + <version>1.0.0-SNAPSHOT </version> |
| 59 | + </dependency> |
| 60 | + </dependencies> |
| 61 | + </profile> |
| 62 | + </profiles> |
| 63 | +</project> |
0 commit comments