ZNPCsPlus/api/build.gradle

23 lines
445 B
Groovy
Raw Permalink Normal View History

2023-04-26 23:58:09 +00:00
plugins {
id "java"
2023-04-26 23:58:09 +00:00
}
2023-10-23 18:46:05 +00:00
java {
withSourcesJar()
withJavadocJar()
}
2023-04-26 23:58:09 +00:00
publishing {
publications {
mavenJava(MavenPublication) {
from components.java
artifactId = "znpcsplus-api"
2023-04-26 23:58:09 +00:00
pom {
name.set("znpcsplus-api")
description.set("The API for the ZNPCsPlus plugin")
2023-04-26 23:58:09 +00:00
url.set("https://github.com/Pyrbu/ZNPCsPlus")
}
}
}
}