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.

134 lines
4.8 KiB

1 year ago
1 year ago
1 year ago
1 year ago
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. <!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-data-jpa -->
  31. <dependency>
  32. <groupId>org.springframework.boot</groupId>
  33. <artifactId>spring-boot-starter-data-jpa</artifactId>
  34. </dependency>
  35. <!-- https://mvnrepository.com/artifact/org.mariadb.jdbc/mariadb-java-client -->
  36. <dependency>
  37. <groupId>org.mariadb.jdbc</groupId>
  38. <artifactId>mariadb-java-client</artifactId>
  39. </dependency>
  40. <!-- https://mvnrepository.com/artifact/org.hibernate.orm/hibernate-core -->
  41. <dependency>
  42. <groupId>org.hibernate.orm</groupId>
  43. <artifactId>hibernate-core</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.springframework.cloud</groupId>
  47. <artifactId>spring-cloud-starter</artifactId>
  48. <version>3.1.5</version>
  49. </dependency>
  50. <!-- https://mvnrepository.com/artifact/org.webjars/bootstrap -->
  51. <dependency>
  52. <groupId>org.webjars</groupId>
  53. <artifactId>bootstrap</artifactId>
  54. <version>5.2.2</version>
  55. </dependency>
  56. <!-- https://mvnrepository.com/artifact/org.thymeleaf.extras/thymeleaf-extras-springsecurity5 -->
  57. <dependency>
  58. <groupId>org.thymeleaf.extras</groupId>
  59. <artifactId>thymeleaf-extras-springsecurity5</artifactId>
  60. <version>3.0.4.RELEASE</version>
  61. </dependency>
  62. <!-- https://mvnrepository.com/artifact/org.webjars.bower/jquery -->
  63. <dependency>
  64. <groupId>org.webjars.bower</groupId>
  65. <artifactId>jquery</artifactId>
  66. <version>3.6.1</version>
  67. </dependency>
  68. <!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-validation -->
  69. <dependency>
  70. <groupId>org.springframework.boot</groupId>
  71. <artifactId>spring-boot-starter-validation</artifactId>
  72. </dependency>
  73. <!-- https://mvnrepository.com/artifact/org.webjars/webjars-locator -->
  74. <dependency>
  75. <groupId>org.webjars</groupId>
  76. <artifactId>webjars-locator</artifactId>
  77. <version>0.46</version>
  78. </dependency>
  79. <!-- https://mvnrepository.com/artifact/org.webjars/font-awesome -->
  80. <dependency>
  81. <groupId>org.webjars</groupId>
  82. <artifactId>font-awesome</artifactId>
  83. <version>6.2.0</version>
  84. </dependency>
  85. <dependency>
  86. <groupId>org.springframework.boot</groupId>
  87. <artifactId>spring-boot-devtools</artifactId>
  88. <scope>runtime</scope>
  89. <optional>true</optional>
  90. </dependency>
  91. <dependency>
  92. <groupId>org.springframework.boot</groupId>
  93. <artifactId>spring-boot-starter-test</artifactId>
  94. <scope>test</scope>
  95. </dependency>
  96. <dependency>
  97. <groupId>org.springframework.boot</groupId>
  98. <artifactId>spring-boot-starter-security</artifactId>
  99. </dependency>
  100. <dependency>
  101. <groupId>org.springframework.security</groupId>
  102. <artifactId>spring-security-test</artifactId>
  103. <scope>test</scope>
  104. </dependency>
  105. </dependencies>
  106. <dependencyManagement>
  107. <dependencies>
  108. <dependency>
  109. <groupId>org.springframework.cloud</groupId>
  110. <artifactId>spring-cloud-dependencies</artifactId>
  111. <version>${spring-cloud.version}</version>
  112. <type>pom</type>
  113. <scope>import</scope>
  114. </dependency>
  115. </dependencies>
  116. </dependencyManagement>
  117. <build>
  118. <plugins>
  119. <plugin>
  120. <groupId>org.springframework.boot</groupId>
  121. <artifactId>spring-boot-maven-plugin</artifactId>
  122. </plugin>
  123. </plugins>
  124. </build>
  125. </project>