_ums_

POM Sprint 9

Aug 8th, 2022
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 2.15 KB | None | 0 0
  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>2.7.1</version>
  9.         <relativePath/> <!-- lookup parent from repository -->
  10.     </parent>
  11.     <groupId>ru.yandex.practicum</groupId>
  12.     <artifactId>filmorate</artifactId>
  13.     <version>0.0.1-SNAPSHOT</version>
  14.     <name>filmorate</name>
  15.     <description>filmorate project</description>
  16.     <properties>
  17.         <java.version>11</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-starter-validation</artifactId>
  27.         </dependency>
  28.         <dependency>
  29.             <groupId>org.springframework.boot</groupId>
  30.             <artifactId>spring-boot-starter-test</artifactId>
  31.             <scope>test</scope>
  32.         </dependency>
  33.         <dependency>
  34.             <groupId>org.projectlombok</groupId>
  35.             <artifactId>lombok</artifactId>
  36.             <version>1.18.20</version>
  37.         </dependency>
  38.         <dependency>
  39.             <groupId>javax.validation</groupId>
  40.             <artifactId>validation-api</artifactId>
  41.             <version>2.0.1.Final</version>
  42.         </dependency>
  43.         <dependency>
  44.             <groupId>junit</groupId>
  45.             <artifactId>junit</artifactId>
  46.             <version>4.13.2</version>
  47.             <scope>test</scope>
  48.         </dependency>
  49.         <dependency>
  50.             <groupId>com.google.code.gson</groupId>
  51.             <artifactId>gson</artifactId>
  52.             <version>2.9.0</version>
  53.         </dependency>
  54.         <dependency>
  55.             <groupId>com.google.code.gson</groupId>
  56.             <artifactId>gson</artifactId>
  57.         </dependency>
  58.     </dependencies>
  59.  
  60.     <build>
  61.         <plugins>
  62.             <plugin>
  63.                 <groupId>org.springframework.boot</groupId>
  64.                 <artifactId>spring-boot-maven-plugin</artifactId>
  65.                 <version>${project.parent.version}</version>
  66.             </plugin>
  67.         </plugins>
  68.     </build>
  69.  
  70. </project>
  71.  
Advertisement
Add Comment
Please, Sign In to add comment