Initial commit

This commit is contained in:
AidarKC
2026-03-18 22:28:13 +03:00
parent 37c36ffdba
commit 18bf5d65d7
31 changed files with 34524 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
plugins {
id 'java'
}
group = 'shine' // можешь поставить свой group
version = '1.0.0'
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
}
repositories {
mavenCentral()
}
dependencies {
// BouncyCastle для Ed25519 и SHA-256
implementation 'org.bouncycastle:bcprov-jdk18on:1.78.1'
implementation "org.slf4j:slf4j-api:2.0.16" // вызов логгера
testImplementation 'org.junit.jupiter:junit-jupiter:5.11.0'
}
test {
useJUnitPlatform()
}