forked from esl-client/esl-client
-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
52 lines (43 loc) · 1.04 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
plugins {
id 'java'
id 'maven'
id 'maven-publish'
}
group = 'org.freeswitch.esl.client'
version = '0.10.3'
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
mavenLocal()
maven {
url "http://10.0.10.204:8081/nexus/content/groups/public"
}
mavenCentral()
}
dependencies {
compile 'io.netty:netty-all:4.1.17.Final'
compile 'com.google.guava:guava:23.4-jre'
compile 'org.slf4j:slf4j-api:1.7.25'
runtime 'ch.qos.logback:logback-classic:1.2.3'
testCompile 'junit:junit:4.8.1'
}
publishing {
publications {
mavenJava(MavenPublication) {
groupId 'org.freeswitch.esl.client'
artifactId 'esl-client'
version '0.10.5'
from components.java
// more goes in here
}
}
repositories {
maven {
url "http://10.0.10.204:8081/nexus/content/repositories/thirdparty/"
credentials {
username 'admin'
password 'admin123'
}
}
}
}