You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

98 lines
3.2 KiB

1 year ago
1 year ago
1 year ago
1 year ago
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>3.0.0</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.cristobalbernal</groupId>
  12. <artifactId>Foro</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <name>Foro</name>
  15. <description>Foro</description>
  16. <properties>
  17. <java.version>17</java.version>
  18. <spring-cloud.version>2021.0.5</spring-cloud.version>
  19. </properties>
  20. <dependencies>
  21. <dependency>
  22. <groupId>org.springframework.boot</groupId>
  23. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.springframework.boot</groupId>
  27. <artifactId>spring-boot-starter-web</artifactId>
  28. <version>3.0.0</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.springframework.cloud</groupId>
  32. <artifactId>spring-cloud-starter</artifactId>
  33. <version>3.1.5</version>
  34. </dependency>
  35. <!-- https://mvnrepository.com/artifact/org.webjars/bootstrap -->
  36. <dependency>
  37. <groupId>org.webjars</groupId>
  38. <artifactId>bootstrap</artifactId>
  39. <version>5.2.2</version>
  40. </dependency>
  41. <!-- https://mvnrepository.com/artifact/org.webjars.bower/jquery -->
  42. <dependency>
  43. <groupId>org.webjars.bower</groupId>
  44. <artifactId>jquery</artifactId>
  45. <version>3.6.1</version>
  46. </dependency>
  47. <!-- https://mvnrepository.com/artifact/org.webjars/webjars-locator -->
  48. <dependency>
  49. <groupId>org.webjars</groupId>
  50. <artifactId>webjars-locator</artifactId>
  51. <version>0.46</version>
  52. </dependency>
  53. <!-- https://mvnrepository.com/artifact/org.webjars/font-awesome -->
  54. <dependency>
  55. <groupId>org.webjars</groupId>
  56. <artifactId>font-awesome</artifactId>
  57. <version>6.2.0</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.springframework.boot</groupId>
  61. <artifactId>spring-boot-devtools</artifactId>
  62. <scope>runtime</scope>
  63. <optional>true</optional>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.springframework.boot</groupId>
  67. <artifactId>spring-boot-starter-test</artifactId>
  68. <scope>test</scope>
  69. </dependency>
  70. </dependencies>
  71. <dependencyManagement>
  72. <dependencies>
  73. <dependency>
  74. <groupId>org.springframework.cloud</groupId>
  75. <artifactId>spring-cloud-dependencies</artifactId>
  76. <version>${spring-cloud.version}</version>
  77. <type>pom</type>
  78. <scope>import</scope>
  79. </dependency>
  80. </dependencies>
  81. </dependencyManagement>
  82. <build>
  83. <plugins>
  84. <plugin>
  85. <groupId>org.springframework.boot</groupId>
  86. <artifactId>spring-boot-maven-plugin</artifactId>
  87. </plugin>
  88. </plugins>
  89. </build>
  90. </project>