|
@ -15,25 +15,74 @@ |
|
|
<description>Foro</description> |
|
|
<description>Foro</description> |
|
|
<properties> |
|
|
<properties> |
|
|
<java.version>17</java.version> |
|
|
<java.version>17</java.version> |
|
|
|
|
|
<spring-cloud.version>2021.0.5</spring-cloud.version> |
|
|
</properties> |
|
|
</properties> |
|
|
<dependencies> |
|
|
<dependencies> |
|
|
<dependency> |
|
|
|
|
|
<groupId>org.springframework.boot</groupId> |
|
|
|
|
|
<artifactId>spring-boot-starter</artifactId> |
|
|
|
|
|
</dependency> |
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-data-jpa --> |
|
|
|
|
|
<dependency> |
|
|
|
|
|
<groupId>org.springframework.boot</groupId> |
|
|
|
|
|
<artifactId>spring-boot-starter-data-jpa</artifactId> |
|
|
|
|
|
</dependency> |
|
|
|
|
|
|
|
|
<dependency> |
|
|
|
|
|
<groupId>org.springframework.boot</groupId> |
|
|
|
|
|
<artifactId>spring-boot-starter-thymeleaf</artifactId> |
|
|
|
|
|
</dependency> |
|
|
|
|
|
<dependency> |
|
|
|
|
|
<groupId>org.springframework.boot</groupId> |
|
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId> |
|
|
|
|
|
<version>3.0.0</version> |
|
|
|
|
|
</dependency> |
|
|
|
|
|
<dependency> |
|
|
|
|
|
<groupId>org.springframework.cloud</groupId> |
|
|
|
|
|
<artifactId>spring-cloud-starter</artifactId> |
|
|
|
|
|
<version>3.1.5</version> |
|
|
|
|
|
|
|
|
|
|
|
</dependency> |
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.webjars/bootstrap --> |
|
|
|
|
|
<dependency> |
|
|
|
|
|
<groupId>org.webjars</groupId> |
|
|
|
|
|
<artifactId>bootstrap</artifactId> |
|
|
|
|
|
<version>5.2.2</version> |
|
|
|
|
|
</dependency> |
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.webjars.bower/jquery --> |
|
|
|
|
|
<dependency> |
|
|
|
|
|
<groupId>org.webjars.bower</groupId> |
|
|
|
|
|
<artifactId>jquery</artifactId> |
|
|
|
|
|
<version>3.6.1</version> |
|
|
|
|
|
</dependency> |
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.webjars/webjars-locator --> |
|
|
|
|
|
<dependency> |
|
|
|
|
|
<groupId>org.webjars</groupId> |
|
|
|
|
|
<artifactId>webjars-locator</artifactId> |
|
|
|
|
|
<version>0.46</version> |
|
|
|
|
|
</dependency> |
|
|
|
|
|
|
|
|
<dependency> |
|
|
|
|
|
<groupId>org.springframework.boot</groupId> |
|
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId> |
|
|
|
|
|
<scope>test</scope> |
|
|
|
|
|
</dependency> |
|
|
|
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.webjars/font-awesome --> |
|
|
|
|
|
<dependency> |
|
|
|
|
|
<groupId>org.webjars</groupId> |
|
|
|
|
|
<artifactId>font-awesome</artifactId> |
|
|
|
|
|
<version>6.2.0</version> |
|
|
|
|
|
</dependency> |
|
|
|
|
|
|
|
|
</dependencies> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<dependency> |
|
|
|
|
|
<groupId>org.springframework.boot</groupId> |
|
|
|
|
|
<artifactId>spring-boot-devtools</artifactId> |
|
|
|
|
|
<scope>runtime</scope> |
|
|
|
|
|
<optional>true</optional> |
|
|
|
|
|
</dependency> |
|
|
|
|
|
<dependency> |
|
|
|
|
|
<groupId>org.springframework.boot</groupId> |
|
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId> |
|
|
|
|
|
<scope>test</scope> |
|
|
|
|
|
</dependency> |
|
|
|
|
|
</dependencies> |
|
|
|
|
|
<dependencyManagement> |
|
|
|
|
|
<dependencies> |
|
|
|
|
|
<dependency> |
|
|
|
|
|
<groupId>org.springframework.cloud</groupId> |
|
|
|
|
|
<artifactId>spring-cloud-dependencies</artifactId> |
|
|
|
|
|
<version>${spring-cloud.version}</version> |
|
|
|
|
|
<type>pom</type> |
|
|
|
|
|
<scope>import</scope> |
|
|
|
|
|
</dependency> |
|
|
|
|
|
</dependencies> |
|
|
|
|
|
</dependencyManagement> |
|
|
|
|
|
|
|
|
<build> |
|
|
<build> |
|
|
<plugins> |
|
|
<plugins> |
|
|