-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
41 lines (35 loc) · 1.1 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
group 'io.github.the28awg'
version '1.0'
apply plugin: 'java'
apply plugin: 'application'
apply plugin: 'java-library-distribution'
sourceCompatibility = 1.8
mainClassName = "io.github.the28awg.ftb.App"
repositories {
mavenCentral()
}
dependencies {
testCompile 'junit:junit:4.12'
compile 'org.telegram:telegrambots:2.4.4.3'
compile 'com.googlecode.libphonenumber:libphonenumber:8.0.0'
compile 'com.google.code.gson:gson:2.8.0'
compile 'com.squareup.retrofit2:retrofit:2.1.0'
compile 'com.squareup.retrofit2:converter-gson:2.1.0'
compile 'commons-cli:commons-cli:1.3.1'
compile 'mysql:mysql-connector-java:6.0.5'
compile 'org.xerial:sqlite-jdbc:3.16.1'
compile 'org.jsoup:jsoup:1.10.2'
compile 'org.slf4j:slf4j-jdk14:1.7.22'
compile 'com.squareup.okhttp3:okhttp:3.6.0'
compile 'com.squareup.okhttp3:logging-interceptor:3.6.0'
}
jar.manifest.attributes('Class-Path': configurations.runtime.collect {
"./lib/" + it.getName()
}.join(' '), 'Main-Class': mainClassName)
distributions {
main {
contents {
from { 'config.json' }
}
}
}