-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
24 lines (23 loc) · 1010 Bytes
/
build.gradle
File metadata and controls
24 lines (23 loc) · 1010 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
apply plugin : 'eclipse'
apply plugin : 'java'
apply plugin: 'application'
repositories {
maven {
url "http://localhost:8080/artifactory/ext-release-local"
}
mavenCentral()
}
dependencies {
compile(group: 'aws-java-sdk', name: 'aws-java-sdk', version: '1.8.10.2')
compile(group: 'commons-logging', name: 'commons-logging', version: '1.1.1')
compile(group: 'jackson-databind', name: 'jackson-databind', version: '2.1.1')
compile(group: 'jackson-core', name: 'jackson-core', version: '2.1.1')
compile(group: 'jackson-annotations', name: 'jackson-annotations', version: '2.1.1')
compile(group: 'org.apache.httpcomponents', name: 'httpclient', version: '4.2.3')
compile(group: 'org.apache.httpcomponents', name: 'httpcore', version: '4.2')
compile(group: 'joda-time', name: 'joda-time', version: '2.2')
//compile(group: 'freemarker', name: 'freemarker', version: '2.3.18')
}
mainClassName = "com.rishi.amazonsdktest.utils.Sample"
version = '0.1.0'
group = 'com.rishi.amazonsdktest'