shine-solana/solana-shine-client-lib/solana-shine-lib/build.gradle

57 lines
1.2 KiB
Groovy

plugins {
id 'java'
}
group = 'me.shineup'
version = '1.0'
java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
repositories {
mavenCentral()
flatDir {
dirs 'libs'
}
}
dependencies {
// были стандартные
testImplementation platform('org.junit:junit-bom:5.10.0')
testImplementation 'org.junit.jupiter:junit-jupiter'
// шифрование нужна
implementation 'org.bouncycastle:bcprov-jdk15on:1.70'
// implementation 'com.squareup.okhttp3:okhttp:4.12.0' // запросы по сети
//солана
implementation "com.mmorrell:solanaj:1.15.1"
// implementation 'org.bitcoinj:bitcoinj-core:0.15.10'
// implementation 'com.squareup.moshi:moshi:1.13.0'
// implementation 'com.mmorrell:solanaj:1.20.4' - старые соланы не нужны
// implementation name: 'solanaj-1.20.4' - старые соланы не нужны
// Logging
implementation 'org.slf4j:slf4j-api:1.7.36'
implementation 'ch.qos.logback:logback-classic:1.2.11'
implementation 'com.google.code.gson:gson:2.10.1'
}
test {
useJUnitPlatform()
}