mirror of
https://github.com/DiscordSRV/Ascension.git
synced 2024-11-01 08:39:31 +01:00
174 lines
5.3 KiB
Groovy
174 lines
5.3 KiB
Groovy
plugins {
|
|
alias(libs.plugins.shadow) apply false
|
|
alias(libs.plugins.licenser) apply false
|
|
alias(libs.plugins.blossom) apply false
|
|
alias(libs.plugins.indra.git) apply false
|
|
alias(libs.plugins.dependencydownload.plugin) apply false
|
|
}
|
|
|
|
version '3.0.0-SNAPSHOT'
|
|
|
|
subprojects {
|
|
apply plugin: 'java'
|
|
apply plugin: 'java-library'
|
|
apply plugin: 'idea'
|
|
apply plugin: 'com.github.johnrengelman.shadow'
|
|
//apply plugin: 'org.cadixdev.licenser'
|
|
apply plugin: 'net.kyori.indra.git'
|
|
apply plugin: 'dev.vankka.dependencydownload.plugin'
|
|
|
|
group 'com.discordsrv'
|
|
version = rootProject.version
|
|
|
|
java {
|
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
|
targetCompatibility = JavaVersion.VERSION_1_8
|
|
}
|
|
|
|
configurations {
|
|
// Exclude dependencies from being included in jars
|
|
runtimeExclude {
|
|
// Annotations are suppose to be compile time only
|
|
exclude group: 'org.jetbrains', module: 'annotations'
|
|
exclude group: 'com.google.code.findbugs', module: 'jsr305'
|
|
exclude group: 'com.google.errorprone', module: 'error_prone_annotations'
|
|
}
|
|
runtimeClasspath.extendsFrom runtimeExclude
|
|
runtimeDownloadOnly.extendsFrom runtimeExclude
|
|
|
|
// Create runtimeDownloadApi configuration (compileOnlyApi + runtimeDownloadOnly)
|
|
runtimeDownloadApi
|
|
compileOnlyApi.extendsFrom runtimeDownloadApi
|
|
runtimeDownloadOnly.extendsFrom runtimeDownloadApi
|
|
|
|
configureEach {
|
|
resolutionStrategy.failOnDynamicVersions()
|
|
}
|
|
}
|
|
|
|
generateRuntimeDownloadResourceForRuntimeDownloadOnly {
|
|
file = 'dependencies/runtimeDownload-' + project.name + '.txt'
|
|
includeShadowJarRelocations = false
|
|
}
|
|
|
|
repositories {
|
|
// Snapshot repositories
|
|
//maven { url 'https://oss.sonatype.org/content/repositories/snapshots/' }
|
|
//mavenLocal()
|
|
maven { url 'https://s01.oss.sonatype.org/content/repositories/snapshots/' }
|
|
|
|
maven {
|
|
url 'https://nexus.scarsz.me/content/groups/public/'
|
|
content {
|
|
includeGroup 'github.scarsz'
|
|
includeGroup 'me.scarsz'
|
|
includeGroup 'me.minecraftauth'
|
|
|
|
includeGroup 'org.spongepowered' // SpongePowered/Configurate feature/yaml-improvements branch
|
|
includeGroup 'net.dv8tion' // DiscordSRV/JDA v5-webhooks branch
|
|
}
|
|
}
|
|
maven {
|
|
url 'https://libraries.minecraft.net'
|
|
content {
|
|
includeGroup 'com.mojang'
|
|
}
|
|
}
|
|
|
|
// Get dependencies from central last, everything else should be filtered
|
|
mavenCentral()
|
|
}
|
|
|
|
var generatedSources = sourceSets.main.output.generatedSourcesDirs
|
|
idea {
|
|
module {
|
|
generatedSources.forEach {
|
|
generatedSourceDirs.plus(it)
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
// Test dependencies
|
|
testImplementation(libs.jupiter.api)
|
|
testRuntimeOnly(libs.jupiter.engine)
|
|
|
|
// DynamicProxy
|
|
annotationProcessor(libs.dynamicproxy.api)
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
}
|
|
|
|
tasks.register('deleteJarsDir', Delete) {
|
|
delete rootProject.file('jars')
|
|
}
|
|
clean.dependsOn deleteJarsDir
|
|
|
|
defaultTasks 'build'
|
|
jar {
|
|
duplicatesStrategy = DuplicatesStrategy.INCLUDE
|
|
|
|
// If CI then check that licenses are correct, otherwise automatically apply licenses on build
|
|
// dependsOn (System.getenv('CI') === 'true' ? licenseCheck : licenseFormat)
|
|
// Always run shadowJar
|
|
finalizedBy shadowJar
|
|
|
|
manifest.attributes(
|
|
'Specification-Title': 'DiscordSRV',
|
|
'Specification-Vendor': 'DiscordSRV',
|
|
'Specification-Version': project.version
|
|
)
|
|
if (project.name != "api") {
|
|
manifest.attributes(
|
|
'Implementation-Title': 'DiscordSRV',
|
|
'Implementation-Vendor': 'DiscordSRV',
|
|
'Implementation-Version': project.version
|
|
)
|
|
}
|
|
|
|
manifest.attributes(
|
|
'Build-Time': new Date().toString()
|
|
)
|
|
if (indraGit.isPresent()) {
|
|
indraGit.applyVcsInformationToManifest(manifest)
|
|
}
|
|
}
|
|
|
|
shadowJar {
|
|
// Merge META-INF/services files where needed
|
|
mergeServiceFiles()
|
|
|
|
// Exclude signatures, maven/ and proguard/ from META-INF
|
|
exclude 'META-INF/*.SF'
|
|
exclude 'META-INF/*.DSA'
|
|
exclude 'META-INF/*.RSA'
|
|
exclude 'META-INF/maven/**'
|
|
exclude 'META-INF/proguard/**'
|
|
}
|
|
|
|
gradle.projectsEvaluated {
|
|
tasks.withType(JavaCompile) {
|
|
// Enable compiler warnings for unchecked & deprecation
|
|
options.compilerArgs << '-Xlint:unchecked' << '-Xlint:deprecation'
|
|
}
|
|
}
|
|
|
|
processResources {
|
|
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
|
|
}
|
|
|
|
|
|
// license {
|
|
// header = rootProject.file('buildscript/license/LICENSE_HEADER')
|
|
// properties {
|
|
// var inception = '2016'
|
|
// var currentYear = String.valueOf(Calendar.getInstance().get(Calendar.YEAR))
|
|
//
|
|
// year = inception == currentYear ? currentYear : inception + '-' + currentYear
|
|
// }
|
|
// include '**/*.java' // only java files
|
|
// }
|
|
}
|