aws-iot-device-sdk-java-pom-extended
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.richpurba.amazonaws</groupId> <artifactId>aws-iot-device-sdk-java-pom-extended</artifactId> <version>1.0.2</version> </dependency>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>io.github.richpurba.amazonaws</groupId> <artifactId>aws-iot-device-sdk-java-pom-extended</artifactId> <version>1.0.2</version> <packaging>pom</packaging> <name>AWS IoT Device SDK for Java - extended</name> <description>The AWS IoT Device SDK for Java provides Java APIs for devices to connect to AWS IoT service using the MQTT protocol. The SDK also provides support for AWS IoT specific features, such as Thing Shadow and Thing Shadow abstraction. This version has more extension. </description> <url>https://aws.amazon.com/iot/sdk</url> <properties> <project.package.version>1.0.0-SNAPSHOT</project.package.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <licenses> <license> <name>Apache License, Version 2.0</name> <url>https://aws.amazon.com/apache2.0</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <id>amazonwebservices</id> <organization>Amazon Web Services</organization> <organizationUrl>https://aws.amazon.com</organizationUrl> <roles> <role>developer</role> </roles> </developer> </developers> <scm> <developerConnection>scm:git:https://github.com/richPurba/aws-iot-device-sdk-java.git</developerConnection> <connection>scm:git:https://github.com/richPurba/aws-iot-device-sdk-java.git</connection> <url>https://github.com/richPurba/aws-iot-device-sdk-java</url> <tag></tag> </scm> <modules> <module>aws-iot-device-sdk-java</module> </modules> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <build> <plugins> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.7</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.5.1</version> <configuration> <compilerVersion>1.7</compilerVersion> <source>1.7</source> <target>1.7</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> <configuration> <gpgArguments> <arg>--pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.5.3</version> <configuration> <autoVersionSubmodules>true</autoVersionSubmodules> <useReleaseProfile>false</useReleaseProfile> <releaseProfiles>release</releaseProfiles> <goals>deploy</goals> </configuration> </plugin> </plugins> </build> </project>