Skip to content

Commit

Permalink
Merge pull request #453 from Kichura/dev
Browse files Browse the repository at this point in the history
Include annotationProcessor for compileOnly.
  • Loading branch information
FlorianMichael authored Aug 30, 2023
2 parents 5ee37ab + 055bcdd commit 2cc864a
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion bukkit/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ plugins {
dependencies {
api project(":viarewind-core")

compileOnly "org.spigotmc:spigot-api:1.12.2-R0.1-SNAPSHOT"
compileOnly(annotationProcessor("org.spigotmc:spigot-api:1.12.2-R0.1-SNAPSHOT"))
}
2 changes: 1 addition & 1 deletion bungee/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ plugins {
dependencies {
api project(":viarewind-core")

compileOnly "net.md-5:bungeecord-api:1.16-R0.5-SNAPSHOT"
compileOnly(annotationProcessor("net.md-5:bungeecord-api:1.16-R0.5-SNAPSHOT"))
}
4 changes: 2 additions & 2 deletions fabric/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ plugins {
dependencies {
api project(":viarewind-core")

compileOnly "net.fabricmc:fabric-loader:0.11.3"
compileOnly "org.apache.logging.log4j:log4j-api:2.17.1"
compileOnly(annotationProcessor("net.fabricmc:fabric-loader:0.11.3"))
compileOnly(annotationProcessor("org.apache.logging.log4j:log4j-api:2.17.1"))
}
2 changes: 1 addition & 1 deletion sponge/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ plugins {
dependencies {
api project(":viarewind-core")

compileOnly "org.spongepowered:spongeapi:8.0.0"
compileOnly(annotationProcessor("org.spongepowered:spongeapi:8.0.0"))
}
2 changes: 1 addition & 1 deletion velocity/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ plugins {
dependencies {
api project(":viarewind-core")

compileOnly "com.velocitypowered:velocity-api:3.0.1"
compileOnly(annotationProcessor("com.velocitypowered:velocity-api:3.0.1"))
}

0 comments on commit 2cc864a

Please sign in to comment.