This repository has been archived by the owner on Jan 24, 2021. It is now read-only.
forked from chrisliebot/classic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
77 lines (64 loc) · 2.12 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
plugins {
// gradle dependencyUpdates -Drevision=release
id "com.github.ben-manes.versions" version "0.20.0"
id "com.github.johnrengelman.shadow" version "4.0.4"
id 'java'
}
apply plugin: 'java'
apply plugin: 'application'
apply plugin: 'idea'
group = "chrisliebaer"
version = "2.0"
mainClassName = "chrisliebaer.chrisliebot.ChrisliebotIrc"
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}
repositories {
mavenLocal()
mavenCentral()
jcenter()
}
dependencies {
compileOnly "org.projectlombok:lombok:1.18.6"
annotationProcessor "org.projectlombok:lombok:1.18.6"
// logging
ext.slf4j = "1.7.25"
ext.log4j2 = "2.11.2"
implementation "org.slf4j:slf4j-api:$slf4j"
implementation "org.apache.logging.log4j:log4j-core:$log4j2"
implementation "org.apache.logging.log4j:log4j-slf4j-impl:$log4j2"
compile 'com.djdch.log4j:log4j-staticshutdown:1.1.0'
// commons stuff you don't know you actually want until you realise it's missing
implementation group: 'commons-io', name: 'commons-io', version: '2.6'
implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.8.1'
implementation group: 'org.apache.commons', name: 'commons-text', version: '1.6'
implementation group: 'org.apache.commons', name: 'commons-collections4', version: '4.3'
implementation "com.google.code.gson:gson:2.8.5"
implementation "com.google.guava:guava:27.0.1-jre"
// retrofit
implementation "com.squareup.retrofit2:retrofit:2.5.0"
implementation "com.squareup.retrofit2:converter-gson:2.5.0"
// okhttp
compile 'com.squareup.okhttp3:okhttp:3.13.1'
implementation 'com.squareup.okhttp3:logging-interceptor:3.13.1'
// webserver
compile 'io.undertow:undertow-core:2.0.23.Final'
// features
compile 'com.joestelmach:natty:0.11'
compile 'dnsjava:dnsjava:2.1.8'
compile 'org.nibor.autolink:autolink:0.10.0'
compile 'org.jsoup:jsoup:1.11.3'
compile 'org.mariadb.jdbc:mariadb-java-client:2.4.0'
compile 'me.xdrop:fuzzywuzzy:1.2.0'
// protocols
compile 'org.kitteh.irc:client-lib:7.2.2'
compile('net.dv8tion:JDA:4.BETA.0_22') {
exclude module: 'opus-java'
}
}
idea {
module {
downloadJavadoc = true
downloadSources = true
}
}