azure-functions-java-spi
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.microsoft.azure.functions</groupId> <artifactId>azure-functions-java-spi</artifactId> <version>1.0.0</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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.microsoft.azure.functions</groupId> <artifactId>azure-functions-java-spi</artifactId> <version>1.0.0</version> <packaging>jar</packaging> <parent> <groupId>com.microsoft.maven</groupId> <artifactId>java-8-parent</artifactId> <version>8.0.1</version> <relativePath></relativePath> </parent> <name>Microsoft Azure Functions Java SPI Types</name> <description>This package contains all SPI interfaces for third parties to interact with Microsoft Azure functions runtime.</description> <url>https://azure.microsoft.com/en-us/services/functions</url> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <licenses> <license> <name>MIT License</name> <url>https://opensource.org/licenses/MIT</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:git:https://github.com/Azure/azure-functions-java-core-library</connection> <developerConnection>scm:git:git@github.com:Azure/azure-functions-java-core-library</developerConnection> <url>https://github.com/Azure/azure-functions-java-core-library</url> <tag>HEAD</tag> </scm> <developers> <developer> <id>Microsoft</id> <name>Microsoft Corporation</name> </developer> </developers> <repositories> <repository> <id>maven.snapshots</id> <name>Maven Central Snapshot Repository</name> <url>https://oss.sonatype.org/content/repositories/snapshots/</url> <releases> <enabled>false</enabled> </releases> <snapshots> <enabled>true</enabled> </snapshots> </repository> </repositories> <dependencies> <dependency> <groupId>com.microsoft.azure.functions</groupId> <artifactId>azure-functions-java-core-library</artifactId> <version>1.2.0</version> <scope>provided</scope> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> </plugin> <plugin> <artifactId>maven-enforcer-plugin</artifactId> <version>3.0.0-M2</version> <executions> <execution> <id>enforce-maven</id> <goals> <goal>enforce</goal> </goals> <configuration> <rules> <requireMavenVersion> <version>3.2.0</version> </requireMavenVersion> </rules> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>