bot-azure
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.microsoft.bot</groupId> <artifactId>bot-azure</artifactId> <version>4.14.3</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> <parent> <groupId>com.microsoft.bot</groupId> <artifactId>bot-java</artifactId> <version>4.14.3</version> <relativePath>../../pom.xml</relativePath> </parent> <artifactId>bot-azure</artifactId> <packaging>jar</packaging> <name>${project.groupId}:${project.artifactId}</name> <description>Bot Framework Azure</description> <url>https://dev.botframework.com/</url> <licenses> <license> <name>MIT License</name> <url>http://www.opensource.org/licenses/mit-license.php</url> </license> </licenses> <developers> <developer> <name>Bot Framework Development</name> <email></email> <organization>Microsoft</organization> <organizationUrl>https://dev.botframework.com/</organizationUrl> </developer> </developers> <scm> <connection>scm:git:https://github.com/Microsoft/botbuilder-java</connection> <developerConnection>scm:git:https://github.com/Microsoft/botbuilder-java</developerConnection> <url>https://github.com/Microsoft/botbuilder-java</url> </scm> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.deploy.skip>false</maven.deploy.skip> </properties> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> <dependency> <groupId>com.microsoft.azure</groupId> <artifactId>azure-documentdb</artifactId> <version>2.4.3</version> </dependency> <dependency> <groupId>com.microsoft.bot</groupId> <artifactId>bot-builder</artifactId> </dependency> <dependency> <groupId>com.microsoft.bot</groupId> <artifactId>bot-integration-core</artifactId> </dependency> <dependency> <groupId>com.microsoft.bot</groupId> <artifactId>bot-dialogs</artifactId> </dependency> <dependency> <groupId>com.azure</groupId> <artifactId>azure-storage-queue</artifactId> <version>12.8.0</version> </dependency> <dependency> <groupId>com.microsoft.bot</groupId> <artifactId>bot-builder</artifactId> <version>${project.version}</version> <type>test-jar</type> <scope>test</scope> </dependency> <dependency> <groupId>com.azure</groupId> <artifactId>azure-storage-blob</artifactId> <version>12.10.0</version> </dependency> </dependencies> <profiles> <profile> <id>build</id> <activation> <activeByDefault>true</activeByDefault> </activation> <build> <plugins> </plugins> </build> </profile> </profiles> </project>