mirror of
https://github.com/SimplexDevelopment/FreedomNetworkSuite.git
synced 2024-11-13 04:33:33 +00:00
23 lines
331 B
Groovy
23 lines
331 B
Groovy
plugins {
|
|
id 'java'
|
|
}
|
|
|
|
group = 'me.totalfreedom'
|
|
version = '1.0.0'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
compileOnly project(":Patchwork")
|
|
|
|
testImplementation platform('org.junit:junit-bom:5.9.1')
|
|
testImplementation 'org.junit.jupiter:junit-jupiter'
|
|
}
|
|
|
|
var weight = 2
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
} |