2021-07-29 03:14:29 +02:00
|
|
|
import dev.vankka.dependencydownload.task.GenerateDependencyDownloadResourceTask
|
|
|
|
|
|
|
|
configurations {
|
|
|
|
h2Driver
|
|
|
|
mysqlDriver
|
2021-10-21 01:16:06 +02:00
|
|
|
testRuntimeOnly.extendsFrom runtimeDownloadOnly
|
2021-07-29 03:14:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
task generateResourceForH2Driver(type: GenerateDependencyDownloadResourceTask) {
|
|
|
|
var conf = configurations.h2Driver
|
|
|
|
configuration = conf
|
2021-10-23 01:20:15 +02:00
|
|
|
file = 'dependencies/' + conf.name + '.txt'
|
2021-07-29 03:14:29 +02:00
|
|
|
}
|
|
|
|
task generateResourceForMySQLDriver(type: GenerateDependencyDownloadResourceTask) {
|
|
|
|
var conf = configurations.mysqlDriver
|
|
|
|
configuration = conf
|
2021-10-23 01:20:15 +02:00
|
|
|
file = 'dependencies/' + conf.name + '.txt'
|
2021-07-29 03:14:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
// API
|
|
|
|
annotationProcessor project(':api')
|
2021-10-25 01:04:46 +02:00
|
|
|
compileOnlyApi project(':common:common-api')
|
|
|
|
testImplementation project(':common:common-api')
|
2021-07-29 03:14:29 +02:00
|
|
|
|
|
|
|
// DependencyDownload
|
|
|
|
api 'dev.vankka.dependencydownload:runtime:' + rootProject.ddVersion
|
|
|
|
|
|
|
|
// Discord Webhooks
|
|
|
|
runtimeDownloadApi 'club.minnced:discord-webhooks:0.5.7'
|
|
|
|
|
|
|
|
// Apache Commons
|
|
|
|
runtimeDownloadApi 'org.apache.commons:commons-lang3:3.12.0'
|
|
|
|
runtimeDownloadApi 'commons-io:commons-io:2.10.0'
|
|
|
|
|
|
|
|
// Caffeine
|
|
|
|
runtimeDownloadApi 'com.github.ben-manes.caffeine:caffeine:2.9.2'
|
|
|
|
|
|
|
|
// Config
|
|
|
|
runtimeDownloadApi 'org.spongepowered:configurate-yaml:' + rootProject.configurateVersion
|
|
|
|
runtimeDownloadApi 'org.spongepowered:configurate-hocon:' + rootProject.configurateVersion
|
|
|
|
|
2021-12-24 00:21:14 +01:00
|
|
|
// Logging
|
|
|
|
compileOnlyApi project(':common:common-slf4j-hack')
|
|
|
|
compileOnly 'org.apache.logging.log4j:log4j-core:2.0-beta9'
|
|
|
|
|
2021-07-29 03:14:29 +02:00
|
|
|
// Adventure, MCDiscordReserializer, EnhancedLegacyText
|
|
|
|
runtimeDownloadApi 'net.kyori:adventure-api:' + rootProject.adventureVersion
|
|
|
|
runtimeDownloadApi 'net.kyori:adventure-text-serializer-plain:' + rootProject.adventureVersion
|
|
|
|
runtimeDownloadApi 'net.kyori:adventure-text-serializer-legacy:' + rootProject.adventureVersion
|
|
|
|
runtimeDownloadApi 'net.kyori:adventure-text-serializer-gson:' + rootProject.adventureVersion
|
|
|
|
runtimeDownloadApi 'dev.vankka:mcdiscordreserializer:4.2.4-SNAPSHOT'
|
|
|
|
runtimeDownloadApi 'dev.vankka:enhancedlegacytext:1.0.0-SNAPSHOT'
|
|
|
|
|
2021-07-29 15:15:21 +02:00
|
|
|
// Database Drivers
|
2021-07-29 03:14:29 +02:00
|
|
|
h2Driver 'com.h2database:h2:1.4.200'
|
|
|
|
mysqlDriver 'mysql:mysql-connector-java:8.0.25'
|
2021-12-24 00:21:14 +01:00
|
|
|
|
|
|
|
// Integrations
|
|
|
|
compileOnlyApi 'net.luckperms:api:5.3'
|
2021-07-29 03:14:29 +02:00
|
|
|
}
|
|
|
|
|
2021-10-21 01:16:06 +02:00
|
|
|
processResources {
|
2021-07-29 03:14:29 +02:00
|
|
|
dependsOn(
|
|
|
|
generateRuntimeDownloadResourceForRuntimeDownloadOnly,
|
|
|
|
generateResourceForH2Driver,
|
|
|
|
generateResourceForMySQLDriver
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Relocations in buildscript/relocations.gradle
|