BIP39
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.github.John-Smith-Dav</groupId>
<artifactId>BIP39</artifactId>
<version>0.1.9</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
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>io.github.John-Smith-Dav</groupId>
<artifactId>BIP39</artifactId>
<version>0.1.9</version>
<name>BIP39</name>
<description>BIP39</description>
<url>https://github.com/John-Smith-Dav/OSSRH-70152/BIP39</url>
<inceptionYear>2021</inceptionYear>
<scm>
<tag>master</tag>
<connection>https://github.com/John-Smith-Dav/OSSRH-70152</connection>
<developerConnection>https://github.com/John-Smith-Dav</developerConnection>
<url>https://github.com/John-Smith-Dav/OSSRH-70152</url>
</scm>
<dependencies>
<dependency>
<groupId>com.madgag.spongycastle</groupId>
<artifactId>core</artifactId>
<version>1.58.0.0</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.8.5</version>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>3.11.1</version>
</dependency>
</dependencies>
<dependencyManagement>
</dependencyManagement>
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.resources.sourceEncoding>UTF-8</project.resources.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
</properties>
<build>
<!-- All plugin versions and default config is defined in the pluginManagement section. -->
<pluginManagement>
<plugins>
<!-- org.codehaus.mojo:maven-compiler-plugin -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>versions-maven-plugin</artifactId>
<version>2.7</version>
</plugin>
<plugin>
<artifactId>maven-dependency-plugin</artifactId>
<version>3.1.1</version>
<executions>
<execution>
<id>analyze</id>
<goals>
<goal>analyze-only</goal>
</goals>
<configuration>
<failOnWarning>true</failOnWarning>
<ignoredDependencies>
<ignoredDependency>org.slf4j:slf4j-api</ignoredDependency>
<ignoredDependency>com.google.code.findbugs:jsr305</ignoredDependency>
<ignoredDependency>com.google.code.findbugs:annotations</ignoredDependency>
<ignoredDependency>com.google.errorprone:error_prone_annotations</ignoredDependency>
<ignoredDependency>ch.qos.logback:logback-classic</ignoredDependency>
<!-- As part of SkyStreamer, but only for test scope-->
<ignoredDependency>com.vaadin.external.google:android-json</ignoredDependency>
<ignoredDependency>org.junit.jupiter:junit-jupiter-engine</ignoredDependency>
</ignoredDependencies>
</configuration>
</execution>
</executions>
</plugin>
<!-- org.apache.maven.plugins:maven-compiler-plugin -->
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source>${maven.compiler.source}</source>
<target>${maven.compiler.target}</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<version>2.22.2</version>
<configuration>
<skipITs>${skipITs}</skipITs>
<argLine>${failsafe.argLine}</argLine>
</configuration>
<executions>
<execution>
<id>integration-tests</id>
<goals>
<goal>integration-test</goal>
<goal>verify</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- org.apache.maven.plugins:maven-source-plugin -->
<plugin>
<artifactId>maven-source-plugin</artifactId>
<version>3.1.0</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- org.apache.maven.plugins:maven-javadoc-plugin -->
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.1.0</version>
<configuration>
<excludes>
<exclude>**/generated-sources/**/*</exclude>
</excludes>
<!-- FIXME: Remove this once javadocs are fixed -->
<failOnWarnings>false</failOnWarnings>
<source>8</source>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- org.apache.maven.plugins:maven-surefire-plugin -->
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.22.2</version>
<configuration>
<!-- CircleCI build workaround -->
<argLine>@{argLine} -Xms1024m -Xmx2048m</argLine>
<reuseForks>true</reuseForks>
<useSystemClassLoader>false</useSystemClassLoader>
</configuration>
</plugin>
<!-- org.sonatype.plugins:nexus-staging-maven-plugin
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.8</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh-snapshots</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
-->
<!-- org.codehaus.mojo:license-maven-plugin -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>license-maven-plugin</artifactId>
<version>1.20</version>
<configuration>
<!--license to use for the project-->
<licenseName>apache_v2</licenseName>
<processStartTag>========================LICENSE_START=================================
</processStartTag>
<processEndTag>=========================LICENSE_END==================================
</processEndTag>
<!--generate license file even if it exists-->
<force>true</force>
<licenseMerges>
<licenseMerge>Apache License, Version 2.0|The Apache Software License, Version 2.0|Apache
2|Apache License 2.0|AL 2.0
</licenseMerge>
</licenseMerges>
<!--exclude test-scoped dependencies from the 3rd party license-list-->
<excludedScopes>test</excludedScopes>
<excludes>
<exclude>**/*.json</exclude>
</excludes>
</configuration>
<executions>
<execution>
<id>license-management</id>
<goals>
<!--updates the source's headers according to the specified license-->
<goal>update-file-header</goal>
<!--Adds the full-blown license file to the final product-->
<goal>update-project-license</goal>
<!--generate and add a list of third-party licenses-->
<goal>add-third-party</goal>
</goals>
<phase>process-sources</phase>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
<!-- All plugins in the plugins section will be run for all sub-modules
unless <inherited>false</inherited> is specified. -->
<plugins>
<!-- org.apache.maven.plugins:maven-compiler-plugin -->
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.5.3</version>
<configuration>
<autoVersionSubmodules>true</autoVersionSubmodules>
<useReleaseProfile>false</useReleaseProfile>
<releaseProfiles>release</releaseProfiles>
<goals>deploy</goals>
</configuration>
</plugin>
</plugins>
</build>
<repositories>
<repository>
<id>repository</id>
<name>internal repository</name>
<url>https://s01.oss.sonatype.org/content/groups/public/</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>repository</id>
<name>internal repository</name>
<url>https://s01.oss.sonatype.org/content/groups/public/</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories>
<distributionManagement>
<repository>
<id>releases</id><!--这个ID需要与你的release仓库的Repository ID一致-->
<url>https://s01.oss.sonatype.org/content/repositories/releases/</url>
</repository>
<snapshotRepository>
<id>snapshots</id><!--这个ID需要与你的snapshots仓库的Repository ID一致-->
<url>https://s01.oss.sonatype.org/content/repositories/snapshots/</url>
</snapshotRepository>
</distributionManagement>
</project>