-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
executable file
·43 lines (31 loc) · 1.34 KB
/
build.gradle
File metadata and controls
executable file
·43 lines (31 loc) · 1.34 KB
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
apply plugin: 'eclipse'
apply plugin: 'groovy'
version = '0.1-SNAPSHOT'
group = 'com.ecommerce.asteriskProxyConnect'
sourceCompatibility = '1.6'
targetCompatibility = '1.6'
manifest.mainAttributes("Main-Class" : "com.ecommerce.asteriskProxy.AsteriskProxyConnection",
'Provider': group,
'Implementation-Version': version,
'Built-With': ('gradle-' + new GradleVersion().getVersion()),
'Class-Path': '.'
)
repositories {
mavenCentral()
mavenLocal()
}
configurations {
compile
runtime
}
dependencies {
groovy group: 'org.codehaus.groovy', name: 'groovy', version: '1.7.6'
testCompile group: 'junit', name: 'junit', version: '4.7'
testCompile group: 'org.easymock', name: 'easymock', version: '2.2'
compile group: 'org.apache.ant', name:'ant-javamail', version:'1.8.1'
compile group: 'org.asteriskjava', name:'asterisk-java', version:'1.0.0.CI-SNAPSHOT'
//logging
compile group: 'org.slf4j', name: 'slf4j-api', version: '1.5.11'
runtime group: 'ch.qos.logback', name: 'logback-core', version: '0.9.20'
runtime group: 'ch.qos.logback', name: 'logback-classic', version: '0.9.20'
}