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.

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