mirror of
https://github.com/SimplexDevelopment/Polarize.git
synced 2024-12-22 12:27:37 +00:00
28 lines
481 B
Groovy
28 lines
481 B
Groovy
|
plugins {
|
||
|
id 'java'
|
||
|
}
|
||
|
|
||
|
group = 'io.github.simplexdev'
|
||
|
version = '1.0-SNAPSHOT'
|
||
|
|
||
|
subprojects {
|
||
|
apply plugin: 'java'
|
||
|
|
||
|
repositories {
|
||
|
mavenCentral()
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
implementation 'org.jetbrains:annotations:24.0.0'
|
||
|
testImplementation platform('org.junit:junit-bom:5.9.1')
|
||
|
testImplementation 'org.junit.jupiter:junit-jupiter'
|
||
|
}
|
||
|
}
|
||
|
|
||
|
tasks.build {
|
||
|
dependsOn(":Commons:build", ":Paper:build")
|
||
|
}
|
||
|
|
||
|
test {
|
||
|
useJUnitPlatform()
|
||
|
}
|