mirror of
https://github.com/DiscordSRV/Ascension.git
synced 2024-11-01 08:39:31 +01:00
62 lines
1.3 KiB
Groovy
62 lines
1.3 KiB
Groovy
apply from: rootProject.file('buildscript/relocations.gradle')
|
|
apply plugin: 'maven-publish'
|
|
|
|
dependencies {
|
|
// Annotations
|
|
compileOnlyApi(libs.jetbrains.annotations)
|
|
|
|
// JDA
|
|
api(libs.jda) {
|
|
// We don't use audio
|
|
exclude module: 'opus-java'
|
|
}
|
|
api(libs.okhttp)
|
|
}
|
|
|
|
// Relocations are in buildscript/api.gradle
|
|
|
|
sourceSets {
|
|
// Annotation Processor
|
|
ap {
|
|
java {
|
|
compileClasspath += sourceSets.main.compileClasspath + sourceSets.main.output
|
|
}
|
|
}
|
|
}
|
|
|
|
java {
|
|
withSourcesJar()
|
|
withJavadocJar()
|
|
}
|
|
|
|
jar {
|
|
from sourceSets.ap.output.classesDirs
|
|
from sourceSets.ap.output.resourcesDir
|
|
}
|
|
|
|
indraSpotlessLicenser {
|
|
// Overwrite the default
|
|
licenseHeaderFile(rootProject.file('buildscript/license/API_LICENSE_HEADER'))
|
|
}
|
|
|
|
publishing {
|
|
publications {
|
|
maven(MavenPublication) {
|
|
// Shaded & relocated jar...
|
|
artifact source: shadowJar, classifier: null
|
|
artifact sourcesJar
|
|
artifact javadocJar
|
|
|
|
// ...and a pom with no dependencies
|
|
pom {
|
|
licenses {
|
|
license {
|
|
name = 'The MIT License'
|
|
url = 'https://opensource.org/licenses/MIT'
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|