source: pom.xml@ 43c9090

Last change on this file since 43c9090 was 743de55, checked in by macagaso <gasoskamarija@…>, 6 weeks ago

Initial commit

  • 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.3.2</version>
9 <relativePath/> <!-- lookup parent from repository -->
10 </parent>
11 <groupId>finki.it</groupId>
12 <artifactId>database</artifactId>
13 <version>0.0.1-SNAPSHOT</version>
14 <packaging>war</packaging>
15 <name>database</name>
16 <description>Demo project for Spring Boot</description>
17 <url/>
18 <licenses>
19 <license/>
20 </licenses>
21 <developers>
22 <developer/>
23 </developers>
24 <scm>
25 <connection/>
26 <developerConnection/>
27 <tag/>
28 <url/>
29 </scm>
30 <properties>
31 <java.version>17</java.version>
32 </properties>
33 <dependencies>
34 <dependency>
35 <groupId>org.springframework.boot</groupId>
36 <artifactId>spring-boot-starter-jdbc</artifactId>
37 </dependency>
38 <dependency>
39 <groupId>org.springframework.boot</groupId>
40 <artifactId>spring-boot-starter-thymeleaf</artifactId>
41 </dependency>
42
43 <!-- <dependency>-->
44<!-- <groupId>org.springframework.boot</groupId>-->
45<!-- <artifactId>spring-boot-starter-security</artifactId>-->
46<!-- </dependency>-->
47 <dependency>
48 <groupId>org.springframework.boot</groupId>
49 <artifactId>spring-boot-starter-web</artifactId>
50 </dependency>
51
52 <dependency>
53 <groupId>org.postgresql</groupId>
54 <artifactId>postgresql</artifactId>
55 <scope>runtime</scope>
56 </dependency>
57 <dependency>
58 <groupId>org.projectlombok</groupId>
59 <artifactId>lombok</artifactId>
60 <optional>true</optional>
61 </dependency>
62 <dependency>
63 <groupId>org.springframework.boot</groupId>
64 <artifactId>spring-boot-starter-data-jpa</artifactId>
65 </dependency>
66 <dependency>
67 <groupId>org.springframework.boot</groupId>
68 <artifactId>spring-boot-starter-tomcat</artifactId>
69 <scope>provided</scope>
70 </dependency>
71 <dependency>
72 <groupId>org.springframework.boot</groupId>
73 <artifactId>spring-boot-starter-test</artifactId>
74 <scope>test</scope>
75 </dependency>
76 </dependencies>
77
78 <build>
79 <plugins>
80 <plugin>
81 <groupId>org.springframework.boot</groupId>
82 <artifactId>spring-boot-maven-plugin</artifactId>
83 <configuration>
84 <excludes>
85 <exclude>
86 <groupId>org.projectlombok</groupId>
87 <artifactId>lombok</artifactId>
88 </exclude>
89 </excludes>
90 </configuration>
91 </plugin>
92 </plugins>
93 </build>
94
95</project>
Note: See TracBrowser for help on using the repository browser.