SHA256
32 lines
795 B
Groovy
32 lines
795 B
Groovy
plugins {
|
|
id 'java'
|
|
}
|
|
|
|
group = 'shine'
|
|
version = '1.0.0'
|
|
|
|
java {
|
|
toolchain {
|
|
languageVersion = JavaLanguageVersion.of(17)
|
|
}
|
|
}
|
|
|
|
repositories { mavenCentral() }
|
|
|
|
dependencies {
|
|
implementation project(':shine-server-config')
|
|
implementation project(':shine-server-db')
|
|
implementation project(':shine-server-crypto')
|
|
implementation project(':shine-server-blockchain')
|
|
implementation project(':shine-server-net-protocol')
|
|
implementation project(':shine-server-solana-users-sync')
|
|
|
|
implementation 'com.fasterxml.jackson.core:jackson-databind:2.17.2'
|
|
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() }
|