pom.xml 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <groupId>org.example</groupId>
  7. <artifactId>RentABike</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. <properties>
  10. <maven.compiler.source>11</maven.compiler.source>
  11. <maven.compiler.target>11</maven.compiler.target>
  12. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  13. </properties>
  14. <packaging>war</packaging>
  15. <dependencies>
  16. <dependency>
  17. <groupId>org.springframework</groupId>
  18. <artifactId>spring-webmvc</artifactId>
  19. <version>6.0.5</version>
  20. </dependency>
  21. <dependency>
  22. <groupId>jakarta.servlet</groupId>
  23. <artifactId>jakarta.servlet-api</artifactId>
  24. <version>5.0.0</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.hibernate.orm</groupId>
  28. <artifactId>hibernate-core</artifactId>
  29. <version>6.1.7.Final</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.postgresql</groupId>
  33. <artifactId>postgresql</artifactId>
  34. <version>42.5.4</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.springframework.data</groupId>
  38. <artifactId>spring-data-jpa</artifactId>
  39. <version>3.0.3</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.apache.commons</groupId>
  43. <artifactId>commons-dbcp2</artifactId>
  44. <version>2.9.0</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.springframework.security</groupId>
  48. <artifactId>spring-security-web</artifactId>
  49. <version>6.0.2</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.apache.tomcat.embed</groupId>
  53. <artifactId>tomcat-embed-core</artifactId>
  54. <version>9.0.73</version>
  55. </dependency>
  56. <!-- https://mvnrepository.com/artifact/io.jsonwebtoken/jjwt -->
  57. <dependency>
  58. <groupId>io.jsonwebtoken</groupId>
  59. <artifactId>jjwt</artifactId>
  60. <version>0.9.1</version>
  61. </dependency>
  62. <!-- https://mvnrepository.com/artifact/io.jsonwebtoken/jjwt-api -->
  63. <dependency>
  64. <groupId>io.jsonwebtoken</groupId>
  65. <artifactId>jjwt-api</artifactId>
  66. <version>0.11.2</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.springframework.security</groupId>
  70. <artifactId>spring-security-config</artifactId>
  71. <version>5.7.7</version>
  72. </dependency>
  73. <dependency>
  74. <groupId>org.springframework.security</groupId>
  75. <artifactId>spring-security-jwt</artifactId>
  76. <version>1.1.1.RELEASE</version>
  77. </dependency>
  78. <dependency>
  79. <groupId>javax.xml.bind</groupId>
  80. <artifactId>jaxb-api</artifactId>
  81. <version>2.1</version>
  82. </dependency>
  83. </dependencies>
  84. </project>