mirror of
https://github.com/SimplexDevelopment/FreedomNetworkSuite.git
synced 2024-11-14 21:23:33 +00:00
25 lines
435 B
Groovy
25 lines
435 B
Groovy
|
plugins {
|
||
|
id 'java'
|
||
|
}
|
||
|
|
||
|
group = 'fns.tyr'
|
||
|
version = '1.0.0'
|
||
|
|
||
|
repositories {
|
||
|
mavenCentral()
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
compileOnly project(":Patchwork")
|
||
|
compileOnly project(":Datura")
|
||
|
|
||
|
library 'com.hierynomus:sshj:0.28.0'
|
||
|
library 'org.bouncycastle:bcprov-jdk18on:1.76'
|
||
|
|
||
|
testImplementation platform('org.junit:junit-bom:5.9.1')
|
||
|
testImplementation 'org.junit.jupiter:junit-jupiter'
|
||
|
}
|
||
|
|
||
|
test {
|
||
|
useJUnitPlatform()
|
||
|
}
|