Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement AMA bot from https://github.com/NoComment1105/cozy-ama #71

Closed
wants to merge 9 commits into from
1 change: 1 addition & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ dependencies {
implementation(libs.kx.ser)
implementation(libs.graphql)

implementation(project(":module-ama"))
implementation(project(":module-log-parser"))
implementation(project(":module-moderation"))
implementation(project(":module-role-sync"))
Expand Down
22 changes: 22 additions & 0 deletions module-ama/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
plugins {
`api-module`
NoComment1105 marked this conversation as resolved.
Show resolved Hide resolved
`cozy-module`
`published-module`
}

dependencies {
detektPlugins(libs.detekt)
detektPlugins(libs.detekt.libraries)

ksp(libs.kordex.annotationProcessor)

implementation(libs.kordex.annotations)
implementation(libs.kordex.core)
implementation(libs.kordex.unsafe)
implementation(libs.kordex.pluralkit)

implementation(libs.logging)

implementation(platform(libs.kotlin.bom))
implementation(libs.kotlin.stdlib)
}
Loading