Java-Spring-HTML-CSS
/
pom.xml
106 строк · 3.4 Кб
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"3xsi: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.2.4</version>9<relativePath/> <!-- lookup parent from repository -->10</parent>11<groupId>com.wallet</groupId>12<artifactId>Rest</artifactId>13<version>0.0.1-SNAPSHOT</version>14<name>Wallet</name>15<description>Wallet project for Spring Boot</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-thymeleaf</artifactId>23</dependency>24<dependency>25<groupId>org.springframework.boot</groupId>26<artifactId>spring-boot-starter-data-jpa</artifactId>27</dependency>28<dependency>29<groupId>org.springframework.boot</groupId>30<artifactId>spring-boot-starter-web</artifactId>31</dependency>32
33<dependency>34<groupId>org.postgresql</groupId>35<artifactId>postgresql</artifactId>36<scope>runtime</scope>37</dependency>38<dependency>39<groupId>org.springframework.boot</groupId>40<artifactId>spring-boot-starter-test</artifactId>41<scope>test</scope>42</dependency>43<dependency>44<groupId>org.jsoup</groupId>45<artifactId>jsoup</artifactId>46<version>1.17.2</version>47</dependency>48<dependency>49<groupId>org.springframework</groupId>50<artifactId>spring-webmvc</artifactId>51<version>6.1.5</version>52</dependency>53<dependency>54<groupId>org.springframework.boot</groupId>55<artifactId>spring-boot-configuration-processor</artifactId>56<version>3.2.4</version>57</dependency>58<!-- https://mvnrepository.com/artifact/org.junit.vintage/junit-vintage-engine -->59<dependency>60<groupId>org.junit.vintage</groupId>61<artifactId>junit-vintage-engine</artifactId>62<version>5.10.2</version>63<scope>test</scope>64</dependency>65<dependency>66<groupId>org.springframework.boot</groupId>67<artifactId>spring-boot-devtools</artifactId>68<scope>runtime</scope>69<optional>true</optional>70</dependency>71<dependency>72<groupId>org.jetbrains</groupId>73<artifactId>annotations</artifactId>74<version>24.1.0</version>75<scope>compile</scope>76</dependency>77<dependency>78<groupId>com.google.code.gson</groupId>79<artifactId>gson</artifactId>80<version>2.10.1</version>81</dependency>82<!-- https://mvnrepository.com/artifact/com.squareup.okhttp3/okhttp -->83<dependency>84<groupId>com.squareup.okhttp3</groupId>85<artifactId>okhttp</artifactId>86<version>5.0.0-alpha.14</version>87</dependency>88</dependencies>89<build>90<plugins>91<plugin>92<groupId>org.springframework.boot</groupId>93<artifactId>spring-boot-maven-plugin</artifactId>94</plugin>95<plugin>96<groupId>org.apache.maven.plugins</groupId>97<artifactId>maven-compiler-plugin</artifactId>98<configuration>99<source>21</source>100<target>21</target>101</configuration>102</plugin>103</plugins>104</build>105
106</project>107