Skip to content

Commit 24a25e2

Browse files
committed
gradle it
1 parent 0e1ba52 commit 24a25e2

5 files changed

Lines changed: 297 additions & 0 deletions

File tree

build.gradle

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
apply plugin: 'java'
2+
apply plugin: 'maven'
3+
4+
group = 'com.microsoft.ews-java-api'
5+
version = '2.1-SNAPSHOT'
6+
7+
description = """Exchange Web Services Java API"""
8+
9+
sourceCompatibility = 1.6
10+
targetCompatibility = 1.6
11+
tasks.withType(JavaCompile) {
12+
options.encoding = 'UTF-8'
13+
}
14+
15+
16+
17+
repositories {
18+
19+
maven { url "http://repo.maven.apache.org/maven2" }
20+
}
21+
dependencies {
22+
compile group: 'org.apache.httpcomponents', name: 'httpclient', version:'4.4.1'
23+
compile group: 'org.apache.httpcomponents', name: 'httpcore', version:'4.4.1'
24+
compile group: 'commons-io', name: 'commons-io', version:'2.4'
25+
compile group: 'commons-logging', name: 'commons-logging', version:'1.2'
26+
compile group: 'org.apache.commons', name: 'commons-lang3', version:'3.4'
27+
compile group: 'joda-time', name: 'joda-time', version:'2.8'
28+
testCompile group: 'junit', name: 'junit', version:'4.12'
29+
testCompile group: 'org.hamcrest', name: 'hamcrest-all', version:'1.3'
30+
testCompile group: 'org.mockito', name: 'mockito-core', version:'1.10.19'
31+
testCompile group: 'org.slf4j', name: 'slf4j-api', version:'1.7.12'
32+
testCompile group: 'ch.qos.logback', name: 'logback-classic', version:'1.1.3'
33+
testCompile group: 'org.slf4j', name: 'jcl-over-slf4j', version:'1.7.12'
34+
}
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#Thu Sep 14 11:29:13 CEST 2017
2+
distributionBase=GRADLE_USER_HOME
3+
distributionPath=wrapper/dists
4+
zipStoreBase=GRADLE_USER_HOME
5+
zipStorePath=wrapper/dists
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-4.0.2-bin.zip

gradlew

Lines changed: 172 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gradlew.bat

Lines changed: 84 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

settings.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
rootProject.name = 'ews-java-api'

0 commit comments

Comments
 (0)