forked from EXH3Y/TeleBot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
39 lines (31 loc) · 897 Bytes
/
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
apply plugin: 'java'
group = 'com.github.exh3y'
version = '0.0.5'
repositories {
mavenCentral()
}
dependencies {
implementation 'com.konghq:unirest-java:3.14.5'
implementation 'com.konghq:unirest-objectmapper-jackson:4.2.1'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.16.0'
implementation 'com.fasterxml.jackson.core:jackson-core:2.16.0'
implementation 'com.fasterxml.jackson.core:jackson-annotations:2.16.0'
testImplementation 'junit:junit:4.13.2'
}
task sourcesJar(type: Jar, dependsOn: classes) {
classifier = 'sources'
from sourceSets.main.allSource
}
task javadocJar(type: Jar, dependsOn: javadoc) {
classifier = 'javadoc'
from javadoc.destinationDir
}
test {
testLogging {
events "passed", "skipped", "failed", "standardOut", "standardError"
}
}
artifacts {
archives sourcesJar
archives javadocJar
}