learning
/
pom.xml
33 строки · 1016.0 Байт
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<modelVersion>4.0.0</modelVersion>6
7<groupId>ru.learning.service</groupId>8<artifactId>learning</artifactId>9<packaging>pom</packaging>10<version>1.0-SNAPSHOT</version>11<modules>12<module>paymentsService</module>13<module>productService</module>14</modules>15
16<parent>17<groupId>org.springframework.boot</groupId>18<artifactId>spring-boot-starter-parent</artifactId>19<version>2.6.3</version>20<relativePath></relativePath>21</parent>22
23<properties>24<java.version>17</java.version>25<maven.compiler.source>17</maven.compiler.source>26<maven.compiler.target>17</maven.compiler.target>27</properties>28
29<dependencies>30
31</dependencies>32
33</project>34