Skip to content
This repository was archived by the owner on Jul 19, 2024. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Change Fork of EWS library to use the latest Apache HTTP Client, and …
…not our forked version, as the client has fixed the threading issues, see Apache HTTPCLIENT-1715 and HTTPCLIENT-1686
  • Loading branch information
codewheeney committed Sep 21, 2017
commit 0af224c87b370d578bc49ef5748fe60136598cfb
14 changes: 3 additions & 11 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
<groupId>com.microsoft.ews-java-api</groupId>
<artifactId>ews-java-api-netc</artifactId>

<version>2.0.0</version>
<version>2.0.1</version>

<name>Exchange Web Services Java API</name>
<description>Exchange Web Services (EWS) Java API</description>
Expand Down Expand Up @@ -72,14 +72,6 @@
</developer>
</developers>

<repositories>
<repository>
<id>netc-repo</id>
<name>netc repo</name>
<url>http://netcitadel-maven-repo.s3-website-us-west-2.amazonaws.com/vendors_repo/tools/m2</url>
</repository>
</repositories>

<properties>
<!-- Eliminates the file encoding warning. Of course, all of your files
should probably be UTF-8 nowadays. -->
Expand All @@ -102,7 +94,7 @@
<maven-jxr-plugin.version>2.5</maven-jxr-plugin.version>
<maven-surefire-report-plugin.version>2.18.1</maven-surefire-report-plugin.version>
<!-- Dependencies [COMPILE]: -->
<httpclient.version>4.5.1</httpclient.version>
<httpclient.version>4.5.3</httpclient.version>
<httpcore.version>4.4.1</httpcore.version>
<commons-logging.version>1.2</commons-logging.version>
<joda-time.version>2.8</joda-time.version>
Expand Down Expand Up @@ -192,7 +184,7 @@
<dependencies>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient-netc</artifactId>
<artifactId>httpclient</artifactId>
<version>${httpclient.version}</version>
</dependency>

Expand Down