azure-search
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.azure</groupId> <artifactId>azure-search</artifactId> <version>11.0.0-beta.1</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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.azure</groupId> <artifactId>azure-client-sdk-parent</artifactId> <version>1.7.0</version><!-- {x-version-update;com.azure:azure-client-sdk-parent;current} --> <relativePath>../../../pom.client.xml</relativePath> </parent> <name>Microsoft Azure Search client for Java</name> <description>This package contains client functionality for Microsoft Azure Search</description> <groupId>com.azure</groupId> <artifactId>azure-search</artifactId> <version>11.0.0-beta.1</version> <!-- {x-version-update;com.azure:azure-search;current} --> <packaging>jar</packaging> <properties> <project.automatic.module.name>com.azure.search</project.automatic.module.name> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> </properties> <dependencies> <dependency> <groupId>com.azure</groupId> <artifactId>azure-core</artifactId> <version>1.3.0</version> <!-- {x-version-update;com.azure:azure-core;dependency} --> </dependency> <dependency> <groupId>com.azure</groupId> <artifactId>azure-core-http-netty</artifactId> <version>1.4.0</version> <!-- {x-version-update;com.azure:azure-core-http-netty;dependency} --> </dependency> <!-- Added this dependency to include necessary annotations used by reactor core. Without this dependency, javadoc throws a warning as it cannot find enum When.MAYBE which is used in @Nullable annotation in reactor core classes --> <dependency> <groupId>com.google.code.findbugs</groupId> <artifactId>jsr305</artifactId> <version>3.0.2</version> <!-- {x-version-update;com.google.code.findbugs:jsr305;external_dependency} --> <scope>provided</scope> </dependency> <!-- Test dependencies --> <dependency> <groupId>com.azure</groupId> <artifactId>azure-core-test</artifactId> <version>1.1.0</version> <!-- {x-version-update;com.azure:azure-core-test;dependency} --> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <version>5.4.2</version> <!-- {x-version-update;org.junit.jupiter:junit-jupiter-api;external_dependency} --> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <version>5.4.2</version> <!-- {x-version-update;org.junit.jupiter:junit-jupiter-engine;external_dependency} --> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-params</artifactId> <version>5.4.2</version> <!-- {x-version-update;org.junit.jupiter:junit-jupiter-params;external_dependency} --> <scope>test</scope> </dependency> <dependency> <groupId>io.projectreactor</groupId> <artifactId>reactor-test</artifactId> <version>3.3.0.RELEASE</version> <!-- {x-version-update;io.projectreactor:reactor-test;external_dependency} --> <scope>test</scope> </dependency> <dependency> <groupId>com.microsoft.azure</groupId> <artifactId>azure-client-runtime</artifactId> <version>1.7.2</version> <!-- {x-version-update;com.microsoft.azure:azure-client-runtime;external_dependency} --> <scope>test</scope> </dependency> <!-- Remove these 3 dependencies when we resolve: https://github.com/Azure/azure-sdk-for-java/issues/8874 --> <dependency> <groupId>org.unitils</groupId> <artifactId>unitils-core</artifactId> <version>3.4.6</version> <!-- {x-version-update;org.unitils:unitils-core;external_dependency} --> <scope>test</scope> <exclusions> <exclusion> <groupId>commons-collections</groupId> <artifactId>commons-collections</artifactId> </exclusion> <exclusion> <groupId>ognl</groupId> <artifactId>ognl</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>commons-collections</groupId> <artifactId>commons-collections</artifactId> <version>3.2.2</version> <!-- {x-version-update;commons-collections:commons-collections;external_dependency} --> <scope>test</scope> </dependency> <dependency> <groupId>ognl</groupId> <artifactId>ognl</artifactId> <version>3.0.12</version> <!-- {x-version-update;ognl:ognl;external_dependency} --> <scope>test</scope> </dependency> <!-- Test dependencies for creating search resources --> <dependency> <groupId>com.microsoft.azure</groupId> <artifactId>azure</artifactId> <version>1.24.1</version> <!-- {x-version-update;com.microsoft.azure:azure;external_dependency} --> <scope>test</scope> </dependency> <dependency> <groupId>com.microsoft.azure</groupId> <artifactId>azure-client-authentication</artifactId> <version>1.7.2</version> <!-- {x-version-update;com.microsoft.azure:azure-client-authentication;external_dependency} --> <scope>test</scope> </dependency> <dependency> <groupId>com.microsoft.azure</groupId> <artifactId>azure-mgmt-search</artifactId> <version>1.24.1</version> <!-- {x-version-update;com.microsoft.azure:azure-mgmt-search;external_dependency} --> <scope>test</scope> </dependency> <dependency> <groupId>com.microsoft.azure</groupId> <artifactId>azure-mgmt-resources</artifactId> <version>1.3.0</version> <!-- {x-version-update;com.microsoft.azure:azure-mgmt-resources;external_dependency} --> <scope>test</scope> </dependency> <dependency> <groupId>com.azure</groupId> <artifactId>azure-storage-blob</artifactId> <version>12.4.0</version> <!-- {x-version-update;com.azure:azure-storage-blob;dependency} --> <scope>test</scope> </dependency> <dependency> <groupId>com.sun.activation</groupId> <artifactId>jakarta.activation</artifactId> <version>1.2.1</version> <!-- {x-version-update;com.sun.activation:jakarta.activation;external_dependency} --> <scope>test</scope> </dependency> </dependencies> <profiles> <profile> <id>is.jdk.11</id> <activation> <jdk>[9,)</jdk> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>3.0.0-M3</version> <!-- {x-version-update;org.apache.maven.plugins:maven-surefire-plugin;external_dependency} --> <configuration> <argLine> --add-exports com.azure.core/com.azure.core.implementation.http=ALL-UNNAMED --add-opens com.azure.core/com.azure.core.util=ALL-UNNAMED --add-opens com.azure.search/com.azure.search=ALL-UNNAMED --add-opens com.azure.search/com.azure.search.models=ALL-UNNAMED --add-opens com.azure.search/com.azure.search.implementation=ALL-UNNAMED --add-opens com.azure.search/com.azure.search.implementation.models=ALL-UNNAMED --add-opens com.azure.search/com.azure.search.test.environment.models=com.fasterxml.jackson.databind --add-opens com.azure.search/com.azure.search.test.environment.models=ALL-UNNAMED --add-reads com.azure.core=ALL-UNNAMED --add-reads com.azure.core.test=ALL-UNNAMED --add-reads com.azure.core.http.netty=ALL-UNNAMED </argLine> </configuration> </plugin> </plugins> </build> </profile> </profiles> </project>