From b5e4a0dc28966479e0f2d5c0d69f2f38f734fee1 Mon Sep 17 00:00:00 2001 From: Leonardo Vannucci <leonardo.vannucci@grupposistematica.it> Date: Thu, 09 Aug 2018 17:35:28 +0200 Subject: [PATCH] Implementazione recaptcha --- dg1cloud-core/pom.xml | 30 +++++++++++++++++++++++++++++- 1 files changed, 29 insertions(+), 1 deletions(-) diff --git a/dg1cloud-core/pom.xml b/dg1cloud-core/pom.xml index 1fcf8c8..d97e3cd 100644 --- a/dg1cloud-core/pom.xml +++ b/dg1cloud-core/pom.xml @@ -53,6 +53,22 @@ </dependency> <dependency> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-starter-thymeleaf</artifactId> + </dependency> + + <dependency> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-configuration-processor</artifactId> + <optional>true</optional> + </dependency> + + <dependency> + <groupId>org.apache.httpcomponents</groupId> + <artifactId>httpclient</artifactId> + </dependency> + + <dependency> <groupId>org.postgresql</groupId> <artifactId>postgresql</artifactId> </dependency> @@ -77,7 +93,19 @@ <dependency> <groupId>commons-codec</groupId> <artifactId>commons-codec</artifactId> - </dependency> + </dependency> + + <!-- bootstrap and jquery --> + <dependency> + <groupId>org.webjars</groupId> + <artifactId>bootstrap</artifactId> + <version>3.3.7</version> + </dependency> + <dependency> + <groupId>org.webjars</groupId> + <artifactId>jquery</artifactId> + <version>3.2.1</version> + </dependency> </dependencies> -- Gitblit v1.6.2