1
0
Fork 0
mirror of https://github.com/pgpainless/pgpainless.git synced 2025-12-16 09:11:08 +01:00

Initial implementation of WKD address generation

This commit is contained in:
Paul Schaub 2022-02-20 01:49:35 +01:00
parent db58280db6
commit 142296cef7
Signed by: vanitasvitae
GPG key ID: 62BEE9264BF17311
4 changed files with 147 additions and 1 deletions

28
wkd-java/build.gradle Normal file
View file

@ -0,0 +1,28 @@
// SPDX-FileCopyrightText: 2022 Paul Schaub <vanitasvitae@fsfe.org>
//
// SPDX-License-Identifier: Apache-2.0
plugins {
id 'java-library'
}
group 'org.pgpainless'
repositories {
mavenCentral()
}
dependencies {
testImplementation "org.junit.jupiter:junit-jupiter-api:$junitVersion"
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:$junitVersion"
// Logging
testImplementation "ch.qos.logback:logback-classic:$logbackVersion"
// Z-Base32
implementation 'com.sandinh:zbase32-commons-codec:1.0.0'
}
test {
useJUnitPlatform()
}