#I can't build my plugin
1 messages · Page 1 of 1 (latest)
can you send your gradle build file?
plugins {
id 'java'
}
group = 'org.kanelucky'
version = '1.0'
repositories {
mavenCentral()
maven {
url = uri("https://jitpack.io")
}
}
dependencies {
implementation("com.github.PowerNukkitX:PowerNukkitX:master-SNAPSHOT")
}
test {
useJUnitPlatform()
}
it's here
you also need to import these repositories:
maven("https://repo.opencollab.dev/maven-releases")
maven("https://repo.opencollab.dev/maven-snapshots")
since cloudburst protocol and raknet library is using that repo
thanks!