forked from Joshix-1/Jemand-Bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
89 lines (60 loc) · 2.65 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
plugins {
id 'java'
id 'application'
}
group 'Jemand'
version '1.0-SNAPSHOT'
sourceCompatibility = 1.11
compileJava.options.encoding = "UTF-8"
compileTestJava.options.encoding = "UTF-8"
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
System.out.println("chmod +x /usr/home/admin/Jemand/Jemand-1.0-SNAPSHOT/bin/Jemand\nsudo supervisorctl restart Jemand\n/home/josh/Programming/Jemand-Bot/build/distributions")
}
repositories {
//google()
mavenCentral()
jcenter()
maven { url 'https://jitpack.io' }
//maven {
// url "https://oss.sonatype.org/content/repositories/snapshots/"
//}
flatDir {
dirs 'libs'
}
}
dependencies {
//simple http post
implementation 'com.github.hgoebl:DavidWebb:david-webb-1.3.0'
//telegram
//implementation "org.telegram:telegrambots:4.9.1"
//implementation 'com.github.Joshix-1:Javacord:Tag'
//implementation 'com.github.Joshix-1:Javacord:Jemand-SNAPSHOT'
// implementation 'org.javacord:javacord:3.2.0'
implementation name:'javacord-3.3.1-SNAPSHOT-shaded'
implementation 'com.github.JojiiOfficial:Matrix-ClientServer-API-java:master-SNAPSHOT'
implementation 'org.jsoup:jsoup:1.13.1'
implementation 'com.sedmelluq:lavaplayer:1.3.50'
//implementation group: 'com.github.Bastian', name: 'Lavaplayer-Wrapper', version: '4e8112c'
//implementation 'org.twitter4j:twitter4j-core:4.0.7'
implementation group: 'org.kohsuke', name: 'github-api', version: '1.108'
//implementation 'co.elastic.apm:apm-agent-api:1.22.0'
implementation group: 'de.dfki.mary', name: 'voice-cmu-slt-hsmm', version: '5.2'
implementation 'org.apfloat:apfloat:1.9.1'
//implementation 'org.redisson:redisson:3.12.0'
implementation group: 'commons-io', name: 'commons-io', version: '2.4'
implementation 'org.apache.httpcomponents:httpclient:4.5.10'
//implementation 'org.javacord:javacord:3.0.7-SNAPSHOT'
implementation group: 'org.apache.logging.log4j', name: 'log4j-api', version: '2.11.1'
runtimeOnly group: 'org.apache.logging.log4j', name: 'log4j-core', version:'2.11.1'
implementation 'me.bramhaag:owo-java:2.2'
implementation group: 'com.googlecode.json-simple', name: 'json-simple', version: '1.1'
implementation group: 'org.im4java', name: 'im4java', version: '1.4.0'
implementation 'com.vdurmont:emoji-java:5.0.0'
//implementation
implementation group: 'junit', name: 'junit', version: '4.12'
implementation 'org.zeroturnaround:zt-zip:1.13'
//implementation 'org.jsoup:jsoup:1.12.1'
implementation group: 'org.slf4j', name: 'slf4j-api', version: '1.7.25'
}
mainClassName = 'Jemand.Main'