learning
/
pom.xml
40 строк · 1.4 Кб
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>learning.db</groupId>8<artifactId>learning</artifactId>9<version>1.0-SNAPSHOT</version>10
11<properties>12<java.version>17</java.version>13<maven.compiler.source>17</maven.compiler.source>14<maven.compiler.target>17</maven.compiler.target>15</properties>16
17<dependencies>18<!-- https://mvnrepository.com/artifact/org.postgresql/postgresql -->19<dependency>20<groupId>org.postgresql</groupId>21<artifactId>postgresql</artifactId>22<version>42.7.3</version>23<scope>runtime</scope>24</dependency>25<!-- https://mvnrepository.com/artifact/com.zaxxer/HikariCP -->26<dependency>27<groupId>com.zaxxer</groupId>28<artifactId>HikariCP</artifactId>29<version>5.1.0</version>30</dependency>31<!-- https://mvnrepository.com/artifact/org.springframework/spring-context -->32<dependency>33<groupId>org.springframework</groupId>34<artifactId>spring-context</artifactId>35<version>5.3.37</version>36</dependency>37
38</dependencies>39
40</project>41