forked from esl-client/esl-client
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
50 lines (42 loc) · 1.15 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
apply plugin: 'java'
apply plugin: 'maven'
apply plugin: 'com.novoda.bintray-release'
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.novoda:bintray-release:0.9.2'
}
}
group 'org.freeswitch.esl.client'
version '0.9.2'
repositories {
jcenter()
mavenCentral()
}
allprojects {
tasks.withType(Javadoc) {
options.addStringOption('Xdoclint:none', '-quiet')
options.addStringOption('encoding', 'UTF-8')
}
}
dependencies {
compile group: 'com.google.guava', name: 'guava', version: '29.0-jre'
compile group: 'io.netty', name: 'netty-all', version: '4.1.51.Final'
compile group: 'org.slf4j', name: 'slf4j-api', version: '1.7.30'
runtime 'ch.qos.logback:logback-classic:1.2.3'
testCompile group: 'junit', name: 'junit', version: '4.12'
}
publish {
repoName = 'maven'
userOrg = 'fivetime'
groupId = 'org.freeswitch.esl.client'
artifactId = 'esl-client-netty4'
publishVersion = '0.9.2'
desc = 'Java esl client for netty4'
website = 'https://github.com/fivetime/esl-client-netty4'
}
tasks.withType(JavaCompile) {
options.encoding = "UTF-8"
}