-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
46 lines (39 loc) · 1.13 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
apply plugin: 'java'
apply plugin: 'maven-publish'
repositories {
maven { url "https://jitpack.io" }
mavenCentral()
}
task sourceJar(type: Jar) {
from sourceSets.main.allJava
}
publishing {
publications {
mavenJava(MavenPublication) {
groupId 'com.floern'
artifactId 'genericbot-frame'
version '1.0-beta01'
from components.java
artifact sourceJar {
classifier "sources"
}
}
}
}
publishing {
repositories {
maven {
url "../github-generic-bot-frame-releases/"
}
}
}
dependencies {
compile 'com.google.guava:guava:19.0'
compile 'org.apache.httpcomponents:httpclient:4.5.3'
compile 'org.jsoup:jsoup:1.9.1' // 1.10+ causes issues with chatexchange
compile 'com.google.code.gson:gson:2.6.2' // also used in chatexchange
compile 'ch.qos.logback:logback-classic:1.2.1'
compile 'org.slf4j:slf4j-api:1.7.21'
compile 'com.github.SOBotics:chatexchange:605ffcb'
testCompile group: 'junit', name: 'junit', version: '4.11'
}