|
| 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 | +} |
0 commit comments