23 lines
No EOL
445 B
Groovy
23 lines
No EOL
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")
|
|
}
|
|
}
|
|
}
|
|
} |