connectivity-oauth
Used in
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.sap.cloud.sdk.cloudplatform</groupId> <artifactId>connectivity-oauth</artifactId> <version>5.15.0</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.sap.cloud.sdk.cloudplatform</groupId> <artifactId>cloudplatform-parent</artifactId> <version>5.15.0</version> </parent> <artifactId>connectivity-oauth</artifactId> <name>OAuth2 Connectivity</name> <description>OAuth2 capabilities of destination API</description> <url>https://sap.github.io/cloud-sdk/docs/java/getting-started</url> <organization> <name>SAP SE</name> <url>https://www.sap.com</url> </organization> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <developers> <developer> <name>SAP</name> <email>cloudsdk@sap.com</email> <organization>SAP SE</organization> <organizationUrl>https://www.sap.com</organizationUrl> </developer> </developers> <scm> <connection /> <url /> </scm> <properties> <x-sap-release-audience>Public</x-sap-release-audience> <x-sap-release-maturity>Beta</x-sap-release-maturity> </properties> <dependencies> <dependency> <groupId>com.sap.cloud.sdk.cloudplatform</groupId> <artifactId>cloudplatform-core</artifactId> </dependency> <dependency> <groupId>com.sap.cloud.sdk.cloudplatform</groupId> <artifactId>cloudplatform-connectivity</artifactId> </dependency> <dependency> <groupId>com.sap.cloud.sdk.cloudplatform</groupId> <artifactId>connectivity-ztis</artifactId> <!-- connectivity-ztis brings some dependencies we don't want for applications that don't need it. Setting this to optional means ztis won't come transitively when including oauth. Users will have to include ztis manually. --> <optional>true</optional> </dependency> <dependency> <groupId>com.sap.cloud.sdk.cloudplatform</groupId> <artifactId>connectivity-apache-httpclient4</artifactId> </dependency> <dependency> <groupId>com.sap.cloud.sdk.cloudplatform</groupId> <artifactId>security</artifactId> </dependency> <dependency> <groupId>com.sap.cloud.sdk.cloudplatform</groupId> <artifactId>tenant</artifactId> </dependency> <dependency> <groupId>com.sap.cloud.sdk.cloudplatform</groupId> <artifactId>caching</artifactId> </dependency> <dependency> <groupId>com.sap.cloud.environment.servicebinding.api</groupId> <artifactId>java-core-api</artifactId> </dependency> <dependency> <groupId>com.sap.cloud.environment.servicebinding.api</groupId> <artifactId>java-consumption-api</artifactId> </dependency> <dependency> <groupId>com.sap.cloud.security.xsuaa</groupId> <artifactId>token-client</artifactId> </dependency> <dependency> <groupId>com.sap.cloud.sdk.cloudplatform</groupId> <artifactId>resilience</artifactId> </dependency> <dependency> <groupId>com.sap.cloud.security</groupId> <artifactId>java-api</artifactId> </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpcore</artifactId> <exclusions> <exclusion> <artifactId>commons-logging</artifactId> <groupId>commons-logging</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>jcl-over-slf4j</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>com.auth0</groupId> <artifactId>java-jwt</artifactId> </dependency> <dependency> <groupId>io.vavr</groupId> <artifactId>vavr</artifactId> </dependency> <dependency> <groupId>com.github.ben-manes.caffeine</groupId> <artifactId>caffeine</artifactId> </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> <exclusions> <exclusion> <artifactId>commons-logging</artifactId> <groupId>commons-logging</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> </dependency> <!-- scope "provided" --> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>com.sap.cloud.security</groupId> <artifactId>java-security</artifactId> <scope>runtime</scope> </dependency> <!-- scope "test" --> <dependency> <groupId>com.sap.cloud.environment.servicebinding.api</groupId> <artifactId>java-access-api</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-params</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.wiremock</groupId> <artifactId>wiremock</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.sap.cloud.security</groupId> <artifactId>java-security-test</artifactId> <scope>test</scope> <exclusions> <exclusion> <artifactId>junit</artifactId> <groupId>junit</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.sap.cloud.sdk</groupId> <artifactId>testutil</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <configuration> <ignoredUsedUndeclaredDependencies> <!-- include resilience via the aggregator to ensure the default implementation is present --> <ignoredUsedUndeclaredDependency>com.sap.cloud.sdk.cloudplatform:resilience-api</ignoredUsedUndeclaredDependency> </ignoredUsedUndeclaredDependencies> <ignoredUnusedDeclaredDependencies> <ignoredUnusedDeclaredDependency>com.sap.cloud.sdk.cloudplatform:resilience</ignoredUnusedDeclaredDependency> <!-- required at runtime --> <ignoredUnusedDeclaredDependency>com.sap.cloud.security:java-security</ignoredUnusedDeclaredDependency> </ignoredUnusedDeclaredDependencies> <ignoredNonTestScopedDependencies> <!-- httpcore and httpclient are necessary at runtime. --> <ignoredNonTestScopedDependency>org.apache.httpcomponents:httpcore</ignoredNonTestScopedDependency> <ignoredNonTestScopedDependency>org.apache.httpcomponents:httpclient</ignoredNonTestScopedDependency> <!-- false positive by the maven plugins, this is actually used at compile time --> <ignoredUnusedDeclaredDependency>com.sap.cloud.environment.servicebinding.api:java-core-api</ignoredUnusedDeclaredDependency> </ignoredNonTestScopedDependencies> </configuration> </plugin> </plugins> </build> </project>