move annotations dependency to main gradle file because both subprojects use it

This commit is contained in:
Pyrbu 2024-12-15 10:36:33 +01:00
parent 238a1fe224
commit ca89bfe32d
2 changed files with 1 additions and 4 deletions

View file

@ -8,10 +8,6 @@ java {
withJavadocJar()
}
dependencies {
compileOnly 'org.jetbrains:annotations:26.0.1'
}
publishing {
publications {
mavenJava(MavenPublication) {

View file

@ -9,6 +9,7 @@ subprojects {
}
dependencies {
compileOnly "org.jetbrains:annotations:26.0.1"
compileOnly "org.spigotmc:spigot-api:1.8.8-R0.1-SNAPSHOT"
}