wallet-entities
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>se.oidc.oidfed.md</groupId> <artifactId>wallet-entities</artifactId> <version>1.2.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>se.oidc.oidfed.md</groupId> <artifactId>metadata-parent</artifactId> <version>1.2.0</version> </parent> <artifactId>wallet-entities</artifactId> <name>OIDC Sweden :: OID Federation Metadata :: Wallet entities</name> <description>Support for EUDI wallet federation metadata entities</description> <properties> <maven.compiler.source>17</maven.compiler.source> <maven.compiler.target>17</maven.compiler.target> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:https://github.com/oidc-sweden/openid-federation-metadata.git</connection> <developerConnection>scm:https://github.com/oidc-sweden/openid-federation-metadata.git</developerConnection> <url>https://github.com/oidc-sweden/openid-federation-metadata/tree/main</url> </scm> <developers> <developer> <name>Stefan Santesson</name> <email>stefan@idsec.se</email> <organization>IDsec Solutions AB</organization> <organizationUrl>https://www.idsec.se</organizationUrl> </developer> </developers> <organization> <name>OIDC Sweden</name> <url>https://www.oidc.se</url> </organization> <repositories> <repository> <id>central</id> <name>Maven Central</name> <url>https://repo1.maven.org/maven2/</url> </repository> </repositories> <dependencies> <dependency> <groupId>se.oidc.oidfed.md</groupId> <artifactId>metadata-base</artifactId> <version>1.1.0</version> </dependency> <dependency> <groupId>se.swedenconnect.security</groupId> <artifactId>credentials-support</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <executions> <execution> <id>attach-javadoc</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>