div-java-client
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.sap.cp.cf.div</groupId>
<artifactId>div-java-client</artifactId>
<version>3.6.1</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<project>
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.sap.cp.cf.div</groupId>
<artifactId>div-client-java-parent</artifactId>
<relativePath>../pom.xml</relativePath>
<version>3.6.1</version>
</parent>
<artifactId>div-java-client</artifactId>
<packaging>jar</packaging>
<name>Decentralized Identity Management Java Client</name>
<properties>
<apache.commons.exec.version>1.3</apache.commons.exec.version>
<commons.codec.version>1.15</commons.codec.version>
<apache.commons.fileupload.version>1.5</apache.commons.fileupload.version>
<apache.httpcomponents.version>4.5.14</apache.httpcomponents.version>
<com.github.tomakehurst.wiremock.version>2.35.0</com.github.tomakehurst.wiremock.version>
<fortify.version>1.12.0</fortify.version>
<apache.commons.io.version>2.11.0</apache.commons.io.version>
<apache.httpcore>4.4.16</apache.httpcore>
<org.jeasy.version>4.3.0</org.jeasy.version>
<org.bitbucket.b_c.jose4j.version>0.9.3</org.bitbucket.b_c.jose4j.version>
<org.mapstruct.version>1.6.3</org.mapstruct.version>
<org.projectlombok.version>1.18.36</org.projectlombok.version>
<org.projectlombok.binding.version>0.2.0</org.projectlombok.binding.version>
<org.slf4j.version>2.0.12</org.slf4j.version>
<org.apache.logging.log4j.version>2.24.3</org.apache.logging.log4j.version>
<org.junit.jupiter.version>5.11.4</org.junit.jupiter.version>
<org.mockito.jupiter.version>5.15.2</org.mockito.jupiter.version>
<maven.javadoc.version>3.11.2</maven.javadoc.version>
<maven.failsafe.plugin.version>3.5.2</maven.failsafe.plugin.version>
<org.slf4j.version>2.0.16</org.slf4j.version>
<org.apache.maven.resources.plugin.version>3.3.1</org.apache.maven.resources.plugin.version>
<org.jacoco.maven.plugin.version>0.8.12</org.jacoco.maven.plugin.version>
</properties>
<description>Java client for using SAP BTP Decentralized Identity Verification</description>
<build>
<sourceDirectory>src/main/java</sourceDirectory>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
<annotationProcessorPaths>
<path>
<groupId>org.mapstruct</groupId>
<artifactId>mapstruct-processor</artifactId>
<version>${org.mapstruct.version}</version>
</path>
<path>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${org.projectlombok.version}</version>
</path>
<path>
<groupId>org.projectlombok</groupId>
<artifactId>lombok-mapstruct-binding</artifactId>
<version>${org.projectlombok.binding.version}</version>
</path>
</annotationProcessorPaths>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>${maven.javadoc.version}</version>
<executions>
<execution>
<id>generate-javadoc</id>
<phase>package</phase>
<goals>
<goal>javadoc</goal>
</goals>
</execution>
<execution>
<id>package-javadoc</id>
<phase>install</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
<configuration>
<failOnError>false</failOnError>
<show>private</show>
<excludePackageNames>com.sap.cp.cf.div.client.mapper</excludePackageNames>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<version>${maven.failsafe.plugin.version}</version>
<executions>
<execution>
<goals>
<goal>integration-test</goal>
<goal>verify</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>${org.apache.maven.resources.plugin.version}</version>
<executions>
<!-- Execution for copying main resources -->
<execution>
<id>copy-main-resources</id>
<phase>process-resources</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<outputDirectory>${project.build.outputDirectory}</outputDirectory>
<resources>
<resource>
<directory>src/main/resources</directory>
</resource>
</resources>
</configuration>
</execution>
<!-- Execution for copying test resources -->
<execution>
<id>copy-test-resources</id>
<phase>process-test-resources</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<outputDirectory>${project.build.testOutputDirectory}</outputDirectory>
<resources>
<resource>
<directory>src/test/resources</directory>
</resource>
</resources>
</configuration>
</execution>
<execution>
<id>copy-javadocs</id>
<phase>package</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<outputDirectory>${project.parent.basedir}/docs/resources/javadocs</outputDirectory>
<resources>
<resource>
<directory>${project.build.directory}/site/apidocs</directory>
</resource>
</resources>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>${org.jacoco.maven.plugin.version}</version>
<configuration>
<excludes>
<exclude>com/sap/cp/cf/div/client/dto/**</exclude>
<exclude>com/sap/cp/cf/div/client/authentication/*</exclude>
<exclude>com/sap/cp/cf/div/client/configuration/*</exclude>
<exclude>com/sap/cp/cf/div/client/exception/*</exclude>
<exclude>com/sap/cp/cf/div/client/mapper/*</exclude>
</excludes>
</configuration>
<executions>
<execution>
<id>coverage-initialize</id>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>coverage-report</id>
<phase>verify</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>com.sap.cloud.security.xsuaa</groupId>
<artifactId>token-client</artifactId>
</dependency>
<dependency>
<groupId>com.sap.cloud.security</groupId>
<artifactId>env</artifactId>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${org.projectlombok.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.mapstruct</groupId>
<artifactId>mapstruct</artifactId>
<version>${org.mapstruct.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-reload4j</artifactId>
<version>${org.slf4j.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<version>${org.apache.logging.log4j.version}</version>
</dependency>
<!-- Test dependencies-->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>${org.junit.jupiter.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-junit-jupiter</artifactId>
<version>${org.mockito.jupiter.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.sap.cp.cf.div</groupId>
<artifactId>div-java-client-domain-model</artifactId>
<version>3.6.1</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
<version>2.18.2</version>
<scope>compile</scope>
</dependency>
</dependencies>
</project>