-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
41 lines (36 loc) · 1.12 KB
/
Copy pathbuild.gradle.kts
File metadata and controls
41 lines (36 loc) · 1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
plugins {
alias(libs.plugins.kotlin.jvm)
`maven-publish`
}
group = "its.development.hypervault"
version = "0.1.0"
kotlin {
jvmToolchain(11)
}
dependencies {
// Единственная сторонняя зависимость крипто-ядра (ADR-001).
implementation(libs.bouncycastle.provider)
testImplementation(libs.junit)
}
java {
withSourcesJar()
}
publishing {
publications {
create<MavenPublication>("maven") {
from(components["java"])
artifactId = "hypervault-crypto"
pom {
name.set("hypervault-crypto")
description.set("Offline cryptographic core of Hypervault: Argon2id, HKDF, AES-256-GCM, HV1 vault format, BIP-32/39, SLIP-10, air-gapped signing.")
url.set("https://github.com/ITSDevelopmentCore/hypervault-crypto")
licenses {
license {
name.set("The Apache License, Version 2.0")
url.set("https://www.apache.org/licenses/LICENSE-2.0.txt")
}
}
}
}
}
}