Leonardo Vannucci
2018-08-09 b5e4a0dc28966479e0f2d5c0d69f2f38f734fee1
dg1cloud-core/pom.xml
....@@ -53,6 +53,22 @@
5353 </dependency>
5454
5555 <dependency>
56
+ <groupId>org.springframework.boot</groupId>
57
+ <artifactId>spring-boot-starter-thymeleaf</artifactId>
58
+ </dependency>
59
+
60
+ <dependency>
61
+ <groupId>org.springframework.boot</groupId>
62
+ <artifactId>spring-boot-configuration-processor</artifactId>
63
+ <optional>true</optional>
64
+ </dependency>
65
+
66
+ <dependency>
67
+ <groupId>org.apache.httpcomponents</groupId>
68
+ <artifactId>httpclient</artifactId>
69
+ </dependency>
70
+
71
+ <dependency>
5672 <groupId>org.postgresql</groupId>
5773 <artifactId>postgresql</artifactId>
5874 </dependency>
....@@ -77,7 +93,19 @@
7793 <dependency>
7894 <groupId>commons-codec</groupId>
7995 <artifactId>commons-codec</artifactId>
80
- </dependency>
96
+ </dependency>
97
+
98
+ <!-- bootstrap and jquery -->
99
+ <dependency>
100
+ <groupId>org.webjars</groupId>
101
+ <artifactId>bootstrap</artifactId>
102
+ <version>3.3.7</version>
103
+ </dependency>
104
+ <dependency>
105
+ <groupId>org.webjars</groupId>
106
+ <artifactId>jquery</artifactId>
107
+ <version>3.2.1</version>
108
+ </dependency>
81109
82110 </dependencies>
83111