inji-openid4vp
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.mosip</groupId> <artifactId>inji-openid4vp</artifactId> <version>0.2.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project 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" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <groupId>io.mosip</groupId> <artifactId>inji-openid4vp</artifactId> <version>0.2.0</version> <packaging>aar</packaging> <name>Inji OpenID4VP</name> <url>https://github.com/mosip/inji-openid4vp</url> <description>Kotlin Library to implement OpenID4VP specification</description> <licenses> <license> <name>MPL-2.0</name> <url>https://www.mozilla.org/en-US/MPL/2.0/</url> </license> </licenses> <scm> <connection>scm:git:git://github.com/mosip/inji-openid4vp.git</connection> <developerConnection>scm:git:ssh://github.com/mosip/inji-openid4vp.git</developerConnection> <url>https://github.com/mosip/inji-openid4vp</url> <tag>HEAD</tag> </scm> <developers> <developer> <id>Your developer ID</id> <name>Mosip</name> <email>mosip.emailnotifier@gmail.com</email> <organization>io.mosip</organization> <organizationUrl>https://github.com/mosip/inji-openid4vp</organizationUrl> </developer> </developers> <dependencies> <dependency> <groupId>androidx.core</groupId> <artifactId>core-ktx</artifactId> <version>1.9.0</version> </dependency> <dependency> <groupId>org.jetbrains.kotlinx</groupId> <artifactId>kotlinx-serialization-json</artifactId> <version>1.7.1</version> </dependency> <dependency> <groupId>com.squareup.okhttp3</groupId> <artifactId>okhttp</artifactId> <version>4.12.0</version> </dependency> <dependency> <groupId>commons-codec</groupId> <artifactId>commons-codec</artifactId> <version>1.16.0</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.module</groupId> <artifactId>jackson-module-kotlin</artifactId> <version>2.14.0</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>2.14.0</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-core</artifactId> <version>2.14.0</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-annotations</artifactId> <version>2.14.0</version> </dependency> <dependency> <groupId>com.nimbusds</groupId> <artifactId>nimbus-jose-jwt</artifactId> <version>9.22</version> </dependency> <dependency> <groupId>org.bouncycastle</groupId> <artifactId>bcprov-jdk15to18</artifactId> <version>1.70</version> </dependency> <dependency> <groupId>com.android.identity</groupId> <artifactId>identity-credential</artifactId> <version>20231002</version> </dependency> <dependency> <groupId>info.weboftrust</groupId> <artifactId>ld-signatures-java</artifactId> <version>1.5.0</version> </dependency> <dependency> <groupId>decentralized-identity</groupId> <artifactId>jsonld-common-java</artifactId> <version>1.8.0</version> </dependency> <dependency> <groupId>io.mosip</groupId> <artifactId>vcverifier-jar</artifactId> <version>1.2.0-SNAPSHOT</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>pl.project13.maven</groupId> <artifactId>git-commit-id-plugin</artifactId> <version>3.0.1</version> <executions> <execution> <id>get-the-git-infos</id> <goals> <goal>revision</goal> </goals> <phase>validate</phase> </execution> </executions> <configuration> <generateGitPropertiesFile>true</generateGitPropertiesFile> <generateGitPropertiesFilename>${project.build.outputDirectory}/git.properties</generateGitPropertiesFilename> <includeOnlyProperties> <includeOnlyProperty>^git.build.(time|version)$</includeOnlyProperty> <includeOnlyProperty>^git.commit.id.(abbrev|full)$</includeOnlyProperty> </includeOnlyProperties> <commitIdGenerationMode>full</commitIdGenerationMode> <dotGitDirectory>${project.basedir}/.git</dotGitDirectory> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.5</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> <configuration> <gpgArguments> <arg>--pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>