Enabled logging of HTTP-requests and -responses
[examples/facebook-app] / pom.xml
diff --git a/pom.xml b/pom.xml
index 73ce372..91aaa8b 100644 (file)
--- a/pom.xml
+++ b/pom.xml
     <facebook.app.id>NOT_SET</facebook.app.id>
     <facebook.app.secret>NOT_SET</facebook.app.secret>
     <facebook.app.canvas>NOT_SET</facebook.app.canvas>
+    <!-- settings for the Apache Commons Http-Client -->
+    <httpclient.timeout.connection>60000</httpclient.timeout.connection>
+    <httpclient.timeout.read>60000</httpclient.timeout.read>
+    <httpclient.logging.level>ERROR</httpclient.logging.level>
   </properties>
 
   <dependencies>
       <artifactId>spring-security-crypto</artifactId>
       <scope>runtime</scope>
     </dependency>
+    <!-- Httpclient -->
+    <dependency>
+      <groupId>org.apache.httpcomponents</groupId>
+      <artifactId>httpclient</artifactId>
+    </dependency>
   </dependencies>
 
   <build>