Simplified the configuration of Spring-Security: defaults are not disabled
[examples/facebook-app] / pom.xml
diff --git a/pom.xml b/pom.xml
index 73ce372..5c70ea4 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>
       <groupId>org.springframework.boot</groupId>
       <artifactId>spring-boot-starter-thymeleaf</artifactId>
     </dependency>
+    <dependency>
+      <groupId>org.springframework.boot</groupId>
+      <artifactId>spring-boot-starter-security</artifactId>
+    </dependency>
     <dependency>
       <groupId>org.springframework.social</groupId>
       <artifactId>spring-social-facebook</artifactId>
       <groupId>org.springframework.social</groupId>
       <artifactId>spring-social-facebook-web</artifactId>
     </dependency>
+    <!-- Httpclient -->
     <dependency>
-      <groupId>org.springframework.security</groupId>
-      <artifactId>spring-security-crypto</artifactId>
-      <scope>runtime</scope>
+      <groupId>org.apache.httpcomponents</groupId>
+      <artifactId>httpclient</artifactId>
     </dependency>
   </dependencies>