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.

108 lines
3.4 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 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.2</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>es.fp.edu</groupId>
  12. <artifactId>conecta2</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <name>conecta2</name>
  15. <description>conecta2</description>
  16. <properties>
  17. <java.version>17</java.version>
  18. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>org.springframework.boot</groupId>
  22. <artifactId>spring-boot-starter-web</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.springframework.boot</groupId>
  26. <artifactId>spring-boot-devtools</artifactId>
  27. <scope>runtime</scope>
  28. <optional>true</optional>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.springframework.boot</groupId>
  32. <artifactId>spring-boot-starter-data-jdbc</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.springframework.boot</groupId>
  36. <artifactId>spring-boot-starter-data-jpa</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.mariadb.jdbc</groupId>
  40. <artifactId>mariadb-java-client</artifactId>
  41. <scope>runtime</scope>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.springframework.session</groupId>
  45. <artifactId>spring-session-data-redis</artifactId>
  46. <version>2.7.0</version>
  47. </dependency>
  48. <!-- https://mvnrepository.com/artifact/com.h2database/h2 -->
  49. <dependency>
  50. <groupId>com.h2database</groupId>
  51. <artifactId>h2</artifactId>
  52. <scope>runtime</scope>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.springframework.boot</groupId>
  56. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.webjars</groupId>
  60. <artifactId>bootstrap</artifactId>
  61. <version>5.2.2</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>org.webjars.bower</groupId>
  65. <artifactId>jquery</artifactId>
  66. <version>3.6.1</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.webjars</groupId>
  70. <artifactId>font-awesome</artifactId>
  71. <version>6.2.0</version>
  72. </dependency>
  73. <dependency>
  74. <groupId>org.webjars</groupId>
  75. <artifactId>webjars-locator</artifactId>
  76. <version>0.46</version>
  77. </dependency>
  78. <dependency>
  79. <groupId>org.springframework.boot</groupId>
  80. <artifactId>spring-boot-starter-test</artifactId>
  81. <scope>test</scope>
  82. </dependency>
  83. </dependencies>
  84. <build>
  85. <plugins>
  86. <plugin>
  87. <groupId>org.springframework.boot</groupId>
  88. <artifactId>spring-boot-maven-plugin</artifactId>
  89. <version>${project.parent.version}</version>
  90. </plugin>
  91. </plugins>
  92. </build>
  93. </project>