learning
37 строк · 1.1 Кб
1<?xml version="1.0" encoding="UTF-8"?>
2<project xmlns="http://maven.apache.org/POM/4.0.0"3xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"4xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">5<parent>6<groupId>ru.learning.service</groupId>7<artifactId>learning</artifactId>8<version>1.0-SNAPSHOT</version>9</parent>10<modelVersion>4.0.0</modelVersion>11
12<artifactId>productService</artifactId>13
14<dependencies>15<dependency>16<groupId>org.springframework.boot</groupId>17<artifactId>spring-boot-starter-web</artifactId>18</dependency>19
20<dependency>21<groupId>org.springframework.boot</groupId>22<artifactId>spring-boot-starter-data-jpa</artifactId>23</dependency>24
25<dependency>26<groupId>org.flywaydb</groupId>27<artifactId>flyway-core</artifactId>28</dependency>29
30<dependency>31<groupId>com.h2database</groupId>32<artifactId>h2</artifactId>33</dependency>34
35</dependencies>36
37</project>38