cip30-data-signature-parser
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.cardanofoundation</groupId> <artifactId>cip30-data-signature-parser</artifactId> <version>0.0.12</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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>org.cardanofoundation</groupId> <artifactId>cip30-data-signature-parser</artifactId> <name>CIP 30 Data Signature Parser and Validator</name> <version>0.0.12</version> <description>Java implementation of Cardano's CIP-30 DataSignature parsing and validation.</description> <url>https://github.com/cardano-foundation/cip30-data-signature-parser</url> <developers> <developer> <id>mczeladka</id> <name>Mateusz Czeladka</name> <email>mateusz.czeladka@cardanofoundation.org</email> </developer> <developer> <id>jorgenavben</id> <name>Jorge Navarro Bendicho</name> <email>jorge.navarro@cardanofoundation.org</email> </developer> </developers> <licenses> <license> <name>MPL 2.0</name> <url>https://www.mozilla.org/en-US/MPL/2.0/</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:git:https://github.com/cardano-foundation/cip30-data-signature-parser.git</connection> <developerConnection>scm:git:https://github.com/cardano-foundation/cip30-data-signature-parser.git</developerConnection> <url>https://github.com/cardano-foundation/cip30-data-signature-parser.git</url> </scm> <build> <plugins> <plugin> <artifactId>maven-source-plugin</artifactId> <version>3.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>3.2.0</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> <configuration> <javadocExecutable>${java.home}/bin/javadoc</javadocExecutable> <doclint>none</doclint> </configuration> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>0.8.8</version> <executions> <execution> <id>prepare-agent</id> <goals> <goal>prepare-agent</goal> </goals> </execution> <execution> <id>generate-code-coverage-report</id> <phase>test</phase> <goals> <goal>report</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-release-plugin</artifactId> <version>2.5.3</version> <configuration> <scmCommentPrefix>[ci skip]</scmCommentPrefix> <tagNameFormat>@{project.version}</tagNameFormat> </configuration> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>2.22.2</version> </plugin> <plugin> <artifactId>maven-shade-plugin</artifactId> <version>3.5.0</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <relocations> <relocation> <pattern>com.google.</pattern> <shadedPattern>shaded.com.google.</shadedPattern> </relocation> <relocation> <pattern>co.nstant.in.</pattern> <shadedPattern>shaded.co.nstant.in.</shadedPattern> </relocation> <relocation> <pattern>com.bloxbean.</pattern> <shadedPattern>shaded.com.bloxbean.</shadedPattern> </relocation> <relocation> <pattern>net.i2p.crypto.</pattern> <shadedPattern>shaded.net.i2p.crypto.</shadedPattern> </relocation> <relocation> <pattern>org.bouncycastle.</pattern> <shadedPattern>shaded.org.bouncycastle.</shadedPattern> </relocation> <relocation> <pattern>com.fasterxml.jackson.</pattern> <shadedPattern>shaded.com.fasterxml.jackson.</shadedPattern> </relocation> <relocation> <pattern>javax.</pattern> <shadedPattern>shaded.javax.</shadedPattern> </relocation> <relocation> <pattern>org.checkerframework.</pattern> <shadedPattern>shaded.org.checkerframework.</shadedPattern> </relocation> <relocation> <pattern>edu.umd.cs.findbugs.</pattern> <shadedPattern>shaded.edu.umd.cs.findbugs.</shadedPattern> </relocation> </relocations> <filters> <filter> <artifact>*:*</artifact> <excludes> <exclude>META-INF/*.SF</exclude> <exclude>META-INF/*.DSA</exclude> <exclude>META-INF/*.RSA</exclude> </excludes> </filter> </filters> <artifactSet> <excludes> <exclude>org.slf4j:slf4j-api</exclude> </excludes> </artifactSet> </configuration> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>ci-cd</id> <build> <plugins> <plugin> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</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> </profile> </profiles> <dependencies> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>2.0.5</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <version>5.9.0</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>junit-platform-engine</artifactId> <groupId>org.junit.platform</groupId> </exclusion> <exclusion> <artifactId>junit-jupiter-api</artifactId> <groupId>org.junit.jupiter</groupId> </exclusion> <exclusion> <artifactId>apiguardian-api</artifactId> <groupId>org.apiguardian</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <version>2.0.3</version> <scope>test</scope> </dependency> </dependencies> <reporting> <plugins> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>0.8.8</version> <reportSets> <reportSet> <reports> <report>report</report> </reports> </reportSet> </reportSets> </plugin> </plugins> </reporting> <distributionManagement> <repository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2</url> </repository> <snapshotRepository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> <properties> <maven.compiler.target>17</maven.compiler.target> <java.version>17</java.version> <maven.compiler.source>17</maven.compiler.source> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> </project>