ZNPCsPlus/api/build.gradle
that-apex ae1dd25a9a
All checks were successful
continuous-integration/drone/push Build is passing
feat(ci): add drone
2023-12-20 18:30:52 +01:00

23 lines
445 B
Groovy

plugins {
id "java"
}
java {
withSourcesJar()
withJavadocJar()
}
publishing {
publications {
mavenJava(MavenPublication) {
from components.java
artifactId = "znpcsplus-api"
pom {
name.set("znpcsplus-api")
description.set("The API for the ZNPCsPlus plugin")
url.set("https://github.com/Pyrbu/ZNPCsPlus")
}
}
}
}