apicurio-registry-v2-java-sdk
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.apicurio</groupId> <artifactId>apicurio-registry-v2-java-sdk</artifactId> <version>3.0.9</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- ~ Copyright 2021 Red Hat ~ ~ Licensed under the Apache License, Version 2.0 (the "License"); ~ you may not use this file except in compliance with the License. ~ You may obtain a copy of the License at ~ ~ http://www.apache.org/licenses/LICENSE-2.0 ~ ~ Unless required by applicable law or agreed to in writing, software ~ distributed under the License is distributed on an "AS IS" BASIS, ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ~ See the License for the specific language governing permissions and ~ limitations under the License. --> <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>io.apicurio</groupId> <artifactId>apicurio-registry</artifactId> <version>3.0.9</version> <relativePath>../pom.xml</relativePath> </parent> <name>apicurio-registry-v2-java-sdk</name> <artifactId>apicurio-registry-v2-java-sdk</artifactId> <properties> <projectRoot>${project.basedir}/..</projectRoot> </properties> <dependencies> <dependency> <groupId>com.microsoft.kiota</groupId> <artifactId>microsoft-kiota-abstractions</artifactId> <version>${kiota.libs.version}</version> </dependency> <dependency> <groupId>io.kiota</groupId> <artifactId>kiota-http-vertx</artifactId> <version>${kiota.community.version}</version> </dependency> <dependency> <groupId>io.kiota</groupId> <artifactId>kiota-serialization-jackson</artifactId> <version>${kiota.community.version}</version> </dependency> <dependency> <groupId>com.microsoft.kiota</groupId> <artifactId>microsoft-kiota-serialization-text</artifactId> <version>${kiota.libs.version}</version> </dependency> <dependency> <groupId>com.microsoft.kiota</groupId> <artifactId>microsoft-kiota-serialization-form</artifactId> <version>${kiota.libs.version}</version> </dependency> <dependency> <groupId>com.microsoft.kiota</groupId> <artifactId>microsoft-kiota-serialization-multipart</artifactId> <version>${kiota.libs.version}</version> </dependency> <dependency> <groupId>jakarta.annotation</groupId> <artifactId>jakarta.annotation-api</artifactId> </dependency> <dependency> <groupId>io.vertx</groupId> <artifactId>vertx-auth-oauth2</artifactId> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>io.kiota</groupId> <artifactId>kiota-maven-plugin</artifactId> <version>${kiota.community.version}</version> <executions> <execution> <id>v2</id> <goals> <goal>generate</goal> </goals> <configuration> <kiotaVersion>${kiota.version}</kiotaVersion> <kiotaTimeout>${kiota.timeout}</kiotaTimeout> <baseURL>${kiota.base.url}</baseURL> <file>../common/src/main/resources/META-INF/openapi-v2.json</file> <namespace>io.apicurio.registry.rest.client.v2</namespace> <clientClass>RegistryClient</clientClass> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <version>${version.build.helper.maven.plugin}</version> <executions> <execution> <id>add-source</id> <goals> <goal>add-source</goal> </goals> <phase>generate-sources</phase> <configuration> <sources> <source>${project.build.directory}/generated-sources/kiota/</source> </sources> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>