-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
53 lines (46 loc) · 1.38 KB
/
Copy pathbuild.gradle
File metadata and controls
53 lines (46 loc) · 1.38 KB
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
plugins {
id 'java'
id 'org.ajoberstar.grgit' version '4.1.0'
id "org.ajoberstar.reckon" version "0.13.0-rc.1"
}
group = 'net.ranzer.caexbot'
description = 'Caex Bot for Discord'
repositories {
maven {
name = 'ajoberstar-backup'
url = 'https://ajoberstar.github.io/bintray-backup/'
}
mavenCentral()
maven {
name 'm2-dv8tion'
url 'https://m2.dv8tion.net/releases'
}
}
dependencies {
implementation("net.dv8tion:JDA:4.3.0_280"){
exclude module: 'opus-java'
}
implementation 'com.sedmelluq:lavaplayer:1.3.77'
implementation 'com.google.api-client:google-api-client:1.31.5'
implementation 'com.google.apis:google-api-services-youtube:v3-rev222-1.25.0'
implementation 'org.jsoup:jsoup:1.13.1'
implementation 'org.apache.commons:commons-text:1.9'
implementation group: 'org.hibernate', name: 'hibernate-core', version: '5.4.30.Final'
implementation group: 'org.postgresql', name: 'postgresql', version: '42.2.19'
// testImplementation 'junit:junit:4.12'
}
reckon{
scopeFromProp()
stageFromProp('dev', 'final')
}
jar {
manifest {
attributes (
"Main-Class": "net.ranzer.caexbot.CaexBot",
"version" : project.version
)
}
from {
configurations.runtimeClasspath.collect{it.isDirectory() ? it : zipTree(it)}
}
}