sigourney-trustframework
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.dawex.sigourney</groupId> <artifactId>sigourney-trustframework</artifactId> <version>2.0.5</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> <groupId>com.dawex.sigourney</groupId> <artifactId>sigourney-trustframework</artifactId> <version>2.0.5</version> <packaging>pom</packaging> <name>sigourney-trustframework</name> <description>Sigourney Trust Framework</description> <url>https://github.com/dawex/sigourney</url> <properties> <java.version>17</java.version> <maven.compiler.source>17</maven.compiler.source> <maven.compiler.target>17</maven.compiler.target> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <jreleaser-maven-plugin.version>1.11.0</jreleaser-maven-plugin.version> <maven-javadoc-plugin.version>3.6.3</maven-javadoc-plugin.version> <maven-jar-plugin.version>3.3.0</maven-jar-plugin.version> <maven-source-plugin.version>3.3.0</maven-source-plugin.version> <maven-surefire-plugin.version>3.2.5</maven-surefire-plugin.version> <assert4j.version>3.27.3</assert4j.version> <json-path.version>2.9.0</json-path.version> <junit.version>5.11.4</junit.version> <mockito.version>5.15.2</mockito.version> </properties> <modules> <module>verifiable-credentials-core</module> <module>verifiable-credentials-model</module> </modules> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>${maven-surefire-plugin.version}</version> </plugin> </plugins> </build> <licenses> <license> <name>Apache License, Version 2.0</name> <url>https://github.com/dawex/sigourney/blob/main/LICENSE</url> <distribution>repo</distribution> </license> </licenses> <organization> <name>Dawex</name> <url>https://www.dawex.com</url> </organization> <developers> <developer> <name>Dawex</name> <email>developer@dawex.com</email> <organization>Dawex</organization> <organizationUrl>https://www.dawex.com</organizationUrl> </developer> </developers> <issueManagement> <system>github</system> <url>https://github.com/dawex/sigourney/issues</url> </issueManagement> <scm> <connection>scm:git:https://github.com/dawex/sigourney.git</connection> <developerConnection>scm:git:ssh://github.com/dawex/sigourney.git</developerConnection> <url>https://github.com/dawex/sigourney/tree/main</url> </scm> <distributionManagement> <repository> <id>github</id> <name>Github</name> <url>https://maven.pkg.github.com/dawex/sigourney</url> </repository> </distributionManagement> <profiles> <profile> <id>release</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>${maven-javadoc-plugin.version}</version> <executions> <execution> <id>attach-javadoc</id> <goals> <goal>jar</goal> </goals> <configuration> <failOnError>false</failOnError> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>${maven-source-plugin.version}</version> <executions> <execution> <id>attach-source</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>${maven-jar-plugin.version}</version> <executions> <execution> <id>javadoc-jar</id> <phase>package</phase> <goals> <goal>jar</goal> </goals> <configuration> <classifier>javadoc</classifier> </configuration> </execution> <execution> <id>sources-jar</id> <phase>package</phase> <goals> <goal>jar</goal> </goals> <configuration> <classifier>sources</classifier> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.jreleaser</groupId> <artifactId>jreleaser-maven-plugin</artifactId> <version>${jreleaser-maven-plugin.version}</version> <configuration> <gitRootSearch>true</gitRootSearch> <jreleaser> <project> <copyright>2025 Dawex</copyright> </project> <signing> <active>ALWAYS</active> <armored>true</armored> </signing> <deploy> <maven> <nexus2> <maven-central> <active>ALWAYS</active> <url>https://s01.oss.sonatype.org/service/local</url> <applyMavenCentralRules>true</applyMavenCentralRules> <closeRepository>false</closeRepository> <releaseRepository>false</releaseRepository> <stagingRepositories> <stagingRepository>target/staging-deploy</stagingRepository> </stagingRepositories> </maven-central> </nexus2> </maven> </deploy> </jreleaser> </configuration> </plugin> </plugins> </build> </profile> </profiles> </project>