helidon-integrations-oci-sdk-codegen
Used in: 1 component
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
Overview
Description
Helidon Service Registry Code generation support for the OCI SDK
Snippets
<dependency> <groupId>io.helidon.integrations.oci.sdk</groupId> <artifactId>helidon-integrations-oci-sdk-codegen</artifactId> <version>4.2.2</version> </dependency>
Maven POM File
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright (c) 2025 Oracle and/or its affiliates. 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:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <parent> <groupId>io.helidon.integrations.oci.sdk</groupId> <artifactId>helidon-integrations-oci-sdk-project</artifactId> <version>4.2.2</version> <relativePath>../pom.xml</relativePath> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>helidon-integrations-oci-sdk-codegen</artifactId> <name>Helidon Integrations OCI Injection Codegen</name> <description>Helidon Service Registry Code generation support for the OCI SDK</description> <dependencies> <dependency> <groupId>io.helidon.codegen</groupId> <artifactId>helidon-codegen-apt</artifactId> </dependency> <dependency> <groupId>io.helidon.codegen</groupId> <artifactId>helidon-codegen-class-model</artifactId> </dependency> <dependency> <groupId>io.helidon.service</groupId> <artifactId>helidon-service-codegen</artifactId> </dependency> <dependency> <groupId>io.helidon.common.testing</groupId> <artifactId>helidon-common-testing-junit5</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>io.helidon.codegen</groupId> <artifactId>helidon-codegen-helidon-copyright</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-all</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.oracle.oci.sdk</groupId> <artifactId>oci-java-sdk-common</artifactId> <scope>test</scope> </dependency> <!-- Arbitrarily-selected OCI libraries used for testing universal applicability. --> <dependency> <groupId>com.oracle.oci.sdk</groupId> <artifactId>oci-java-sdk-ailanguage</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.oracle.oci.sdk</groupId> <artifactId>oci-java-sdk-objectstorage</artifactId> <scope>test</scope> </dependency> <!-- Streaming OCI library because it is the only OCI service that doesn't quite match the other OCI services' design patterns. --> <dependency> <groupId>com.oracle.oci.sdk</groupId> <artifactId>oci-java-sdk-streaming</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <compilerArgument>-proc:none</compilerArgument> </configuration> </plugin> </plugins> </build> </project>