Switched to Encryptors.noOpText(), because of Illegal-key-size-issue
[examples/facebook-app] / pom.xml
diff --git a/pom.xml b/pom.xml
index 91aaa8b..30f0bca 100644 (file)
--- a/pom.xml
+++ b/pom.xml
@@ -33,6 +33,9 @@
     <httpclient.timeout.connection>60000</httpclient.timeout.connection>
     <httpclient.timeout.read>60000</httpclient.timeout.read>
     <httpclient.logging.level>ERROR</httpclient.logging.level>
+    <!-- database settings for tests -->
+    <jdbc.groupId>com.h2database</jdbc.groupId>
+    <jdbc.artifactId>h2</jdbc.artifactId>
   </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>
-    <dependency>
-      <groupId>org.springframework.security</groupId>
-      <artifactId>spring-security-crypto</artifactId>
-      <scope>runtime</scope>
-    </dependency>
     <!-- Httpclient -->
     <dependency>
       <groupId>org.apache.httpcomponents</groupId>
       <artifactId>httpclient</artifactId>
     </dependency>
+    <!-- Persistence -->
+    <dependency>
+      <groupId>org.springframework.boot</groupId>
+      <artifactId>spring-boot-starter-data-jpa</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>${jdbc.groupId}</groupId>
+      <artifactId>${jdbc.artifactId}</artifactId>
+      <scope>runtime</scope>
+    </dependency>
   </dependencies>
 
   <build>