source: Prototype Application/Paw5/pom.xml@ c482a3d

main
Last change on this file since c482a3d was c482a3d, checked in by SazdovaEkaterina <sazdovaekaterina@…>, 18 months ago

database setup

  • Property mode set to 100644
File size: 2.5 KB
Line 
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>3.0.1</version>
9 <relativePath/> <!-- lookup parent from repository -->
10 </parent>
11 <groupId>finki</groupId>
12 <artifactId>Paw5</artifactId>
13 <version>0.0.1-SNAPSHOT</version>
14 <name>Paw5</name>
15 <description>Demo 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-web</artifactId>
27 </dependency>
28
29 <dependency>
30 <groupId>org.projectlombok</groupId>
31 <artifactId>lombok</artifactId>
32 <optional>true</optional>
33 </dependency>
34 <dependency>
35 <groupId>org.springframework.boot</groupId>
36 <artifactId>spring-boot-starter-test</artifactId>
37 <scope>test</scope>
38 </dependency>
39 <dependency>
40 <groupId>org.springframework.boot</groupId>
41 <artifactId>spring-boot-starter-data-jpa</artifactId>
42 </dependency>
43 <dependency>
44 <groupId>org.postgresql</groupId>
45 <artifactId>postgresql</artifactId>
46 <scope>runtime</scope>
47 </dependency>
48 <dependency>
49 <groupId>org.springframework.boot</groupId>
50 <artifactId>spring-boot-starter-jdbc</artifactId>
51 </dependency>
52 </dependencies>
53
54 <build>
55 <plugins>
56 <plugin>
57 <groupId>org.springframework.boot</groupId>
58 <artifactId>spring-boot-maven-plugin</artifactId>
59 <configuration>
60 <excludes>
61 <exclude>
62 <groupId>org.projectlombok</groupId>
63 <artifactId>lombok</artifactId>
64 </exclude>
65 </excludes>
66 </configuration>
67 </plugin>
68 </plugins>
69 </build>
70
71</project>
Note: See TracBrowser for help on using the repository browser.