Skip to content

Commit 05a7ffe

Browse files
committed
Fix application of annotation processor
1 parent 9d0c92a commit 05a7ffe

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

annotation-processor/build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ plugins {
66
publishing {
77
publications {
88
create<MavenPublication>("maven") {
9-
artifactId = "lavalink-annotation-processor"
9+
artifactId = "annotation-processor"
1010
from(components["java"])
1111
}
1212
}

build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ plugins {
66
}
77

88
allprojects {
9-
group = "dev.arbjerg"
9+
group = "dev.arbjerg.lavalink"
1010
version = "2.0.0"
1111

1212
repositories {

example/build.gradle.kts

-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ dependencies {
1717
implementation(kotlin("stdlib", "2.0.21"))
1818
implementation("org.jetbrains.kotlinx", "kotlinx-serialization-json", "1.7.3")
1919
implementation("org.jetbrains.kotlinx", "kotlinx-coroutines-core", "1.9.0")
20-
annotationProcessor("dev.arbjerg", "lavalink-annotation-processor", "2.0.0")
2120
}
2221

2322
java {

0 commit comments

Comments
 (0)