| .. | .. |
|---|
| 53 | 53 | </dependency> |
|---|
| 54 | 54 | |
|---|
| 55 | 55 | <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> |
|---|
| 56 | 72 | <groupId>org.postgresql</groupId> |
|---|
| 57 | 73 | <artifactId>postgresql</artifactId> |
|---|
| 58 | 74 | </dependency> |
|---|
| .. | .. |
|---|
| 77 | 93 | <dependency> |
|---|
| 78 | 94 | <groupId>commons-codec</groupId> |
|---|
| 79 | 95 | <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> |
|---|
| 81 | 109 | |
|---|
| 82 | 110 | </dependencies> |
|---|
| 83 | 111 | |
|---|