META-INF.maven.io.helidon.integrations.oci.sdk.helidon-integrations-oci-sdk-cdi.pom.xml Maven / Gradle / Ivy
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright (c) 2022, 2024 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"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>io.helidon.integrations.oci.sdk</groupId> <artifactId>helidon-integrations-oci-sdk-project</artifactId> <version>4.1.2</version> </parent> <artifactId>helidon-integrations-oci-sdk-cdi</artifactId> <name>Helidon Integrations OCI SDK CDI</name> <description> CDI support for the OCI SDK </description> <properties> <spotbugs.exclude>etc/spotbugs/exclude.xml</spotbugs.exclude> </properties> <dependencies> <!-- Compile-scoped dependencies. --> <dependency> <groupId>com.oracle.oci.sdk</groupId> <artifactId>oci-java-sdk-common</artifactId> </dependency> <dependency> <groupId>com.oracle.oci.sdk</groupId> <artifactId>oci-java-sdk-addons-oke-workload-identity</artifactId> </dependency> <dependency> <groupId>org.eclipse.microprofile.config</groupId> <artifactId>microprofile-config-api</artifactId> <scope>compile</scope> </dependency> <!-- Provided-scoped dependencies. --> <dependency> <groupId>jakarta.enterprise</groupId> <artifactId>jakarta.enterprise.cdi-api</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>jakarta.inject</groupId> <artifactId>jakarta.inject-api</artifactId> <scope>provided</scope> </dependency> <!-- Runtime-scoped dependencies. --> <dependency> <groupId>com.oracle.oci.sdk</groupId> <artifactId>oci-java-sdk-common-httpclient-jersey3</artifactId> <scope>runtime</scope> <exclusions> <!-- For dependency convergence. Defer to versions from jersey-apache-connector --> <exclusion> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> </exclusion> <exclusion> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpcore</artifactId> </exclusion> </exclusions> </dependency> <!-- For dependency convergence. To make sure we use Jersey version of org.apache.httpcomponents:httpclient and httpcore --> <dependency> <groupId>org.glassfish.jersey.connectors</groupId> <artifactId>jersey-apache-connector</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>io.helidon.microprofile.config</groupId> <artifactId>helidon-microprofile-config</artifactId> <scope>runtime</scope> <optional>true</optional> </dependency> <dependency> <groupId>io.smallrye</groupId> <artifactId>jandex</artifactId> <scope>runtime</scope> <optional>true</optional> </dependency> <!-- Test-scoped dependencies. --> <!-- Arbitrarily-selected OCI library used for testing universal applicability. --> <dependency> <groupId>com.oracle.oci.sdk</groupId> <artifactId>oci-java-sdk-ailanguage</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> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-all</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>io.helidon.microprofile.cdi</groupId> <artifactId>helidon-microprofile-cdi</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>io.helidon.microprofile.testing</groupId> <artifactId>helidon-microprofile-testing-junit5</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-jdk14</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-surefire-plugin</artifactId> <configuration> <environmentVariables> <CI>${env.CI}</CI> </environmentVariables> <systemPropertyVariables> <io.helidon.logging.config.disabled>true</io.helidon.logging.config.disabled> <java.util.logging.config.file>${project.build.testOutputDirectory}/logging.properties</java.util.logging.config.file> <oci.config.strategy>${oci.config.strategy}</oci.config.strategy> <org.jboss.logging.provider>jdk</org.jboss.logging.provider> </systemPropertyVariables> </configuration> </plugin> </plugins> </build> </project>