WIP: mocking
[maven-thymeleaf-skin] / pom.xml
diff --git a/pom.xml b/pom.xml
index f3fbdf4..89eb17e 100644 (file)
--- a/pom.xml
+++ b/pom.xml
       <optional>true</optional>
     </dependency>
 
+    <!-- Needed for the Spring-Boot autoconfiguration -->
+    <dependency>
+      <groupId>org.springframework.boot</groupId>
+      <artifactId>spring-boot-autoconfigure</artifactId>
+      <optional>true</optional>
+    </dependency>
+
 
     <!-- Testing -->
     <dependency>
       <artifactId>junit</artifactId>
       <scope>test</scope>
     </dependency>
+    <dependency>
+      <groupId>org.springframework.boot</groupId>
+      <artifactId>spring-boot-configuration-processor</artifactId>
+      <scope>test</scope>
+    </dependency>
     <dependency>
       <groupId>ch.qos.logback</groupId>
       <artifactId>logback-classic</artifactId>
       <scope>test</scope>
     </dependency>
+    <dependency>
+      <groupId>org.mockito</groupId>
+      <artifactId>mockito-core</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.jmockit</groupId>
+      <artifactId>jmockit</artifactId>
+      <version>1.9</version>
+      <scope>test</scope>
+    </dependency>
 
   </dependencies>