Download gateway-java-binding-1.1.0.jar file

Introduction

You can download gateway-java-binding-1.1.0.jar in this page.

License

MIT License

Type List

gateway-java-binding-1.1.0.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/MSFTSIG.RSA
META-INF/MSFTSIG.SF
META-INF/maven/com.microsoft.azure.gateway/gateway-java-binding/pom.properties
META-INF/maven/com.microsoft.azure.gateway/gateway-java-binding/pom.xml
com.microsoft.azure.gateway.core.Broker.class
com.microsoft.azure.gateway.core.GatewayModule.class
com.microsoft.azure.gateway.core.IGatewayModule.class
com.microsoft.azure.gateway.core.LocalBroker.class
com.microsoft.azure.gateway.messaging.Message.class

Pom

gateway-java-binding-1.1.0.pom file content.

<?xml version="1.0" encoding="UTF-8"?><!-- Copyright (c) Microsoft. All rights reserved. --><!-- Licensed under the MIT license. See LICENSE file in the project root for full license information. --><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>com.microsoft.azure.gateway</groupId>
    <artifactId>gateway-java-binding</artifactId>
    <version>1.1.0</version>
    <name>Azure IoT Gateway SDK Java Module Binding</name>
    <description>Azure IoT Gateway SDK Java Module Binding</description>
    <url>https://github.com/Azure/azure-iot-gateway-sdk</url>
    <developers>
        <developer>
            <id>microsoft</id>
            <name>Microsoft</name>
        </developer>
    </developers>
    <licenses>
        <license>
            <name>MIT License</name>
            <url>https://opensource.org/licenses/MIT</url>
            <distribution>repo</distribution>
        </license>
    </licenses>
    <scm>
        <url>https://github.com/Azure/azure-iot-gateway-sdk</url>
    </scm>

    <dependencies>
        <!--test dependencies-->
        <dependency>
            <groupId>org.jmockit</groupId>
            <artifactId>jmockit</artifactId>
            <version>1.22</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.12</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.hamcrest</groupId>
            <artifactId>hamcrest-all</artifactId>
            <version>1.3</version>
            <scope>test</scope>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.3</version>
                <configuration>
                    <source>1.6</source>
                    <target>1.6</target>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-plugin</artifactId>
                <version>2.19.1</version>
                <configuration>
                    <argLine>
                    -Dfile.encoding=UTF-8 -javaagent:${settings.localRepository}/org/jmockit/jmockit/1.22/jmockit-1.22.jar
                    </argLine>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-source-plugin</artifactId>
                <executions>
                    <execution>
                        <phase>package</phase>
                        <goals>
                            <goal>jar</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-javadoc-plugin</artifactId>
                <executions>
                    <execution>
                        <phase>package</phase>
                        <goals>
                            <goal>jar</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>

</project>

POM Entry

<dependency>
   <groupId>com.microsoft.azure.gateway</groupId>
   <artifactId>gateway-java-binding</artifactId>
   <version>1.1.0</version>
</dependency>

Download

If you think the following gateway-java-binding-1.1.0.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download gateway-java-binding-1.1.0.jar file




PreviousNext

Related