-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
66 lines (57 loc) · 1.56 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
plugins {
id "com.github.johnrengelman.shadow" version "7.1.0"
}
apply plugin: 'idea'
apply plugin: 'java-library'
apply plugin: 'maven-publish'
group = 'fr.hyriode'
version = '1.0.0'
archivesBaseName = 'HyriBot'
java {
toolchain {
languageVersion = JavaLanguageVersion.of(18)
}
}
compileJava {
sourceCompatibility = targetCompatibility = JavaVersion.VERSION_18
options.encoding = 'UTF-8'
}
repositories {
mavenCentral()
maven {
name 'm2-dv8tion'
url 'https://m2.dv8tion.net/releases'
}
maven {
name = 'HyriAPI_maven'
url = 'https://maven.pkg.github.com/Hyriode/HyriAPI/'
credentials {
username System.getenv("GITHUB_USERNAME")
password System.getenv("GITHUB_TOKEN")
}
}
}
shadowJar {
configurations = [project.configurations.runtimeClasspath]
archiveVersion.set('')
manifest {
attributes 'Main-Class': 'fr.hyriode.hyribot.Bootstrap'
}
}
dependencies {
implementation group: 'net.dv8tion', name: 'JDA', version: '+'
implementation 'com.sedmelluq:lavaplayer:+'
implementation 'com.google.apis:google-api-services-youtube:v3-rev20221108-2.0.0'
implementation 'se.michaelthelin.spotify:spotify-web-api-java:7.3.0'
implementation "fr.hyriode:hyriapi-app:1.5.2-SNAPSHOT"
}
processResources {
filter {
it.replace('@version@', project.version)
}
task repairPublicFiles(type: Copy) {
from 'src/main/resources'
into 'build/resources/main'
}
processResources.finalizedBy repairPublicFiles
}