source: springapp/pom.xml@ ebc5176

Last change on this file since ebc5176 was ebc5176, checked in by unknown <mlviktor23@…>, 22 months ago

prototip

  • Property mode set to 100644
File size: 2.2 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>2.7.2</version>
9 <relativePath/> <!-- lookup parent from repository -->
10 </parent>
11 <groupId>mk.profesori</groupId>
12 <artifactId>springapp</artifactId>
13 <version>0.0.1-SNAPSHOT</version>
14 <name>springapp</name>
15 <description>Proekt po IT</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-data-jpa</artifactId>
23 </dependency>
24 <dependency>
25 <groupId>org.springframework.boot</groupId>
26 <artifactId>spring-boot-starter-security</artifactId>
27 </dependency>
28 <dependency>
29 <groupId>org.springframework.boot</groupId>
30 <artifactId>spring-boot-starter-web</artifactId>
31 </dependency>
32
33 <dependency>
34 <groupId>org.postgresql</groupId>
35 <artifactId>postgresql</artifactId>
36 <scope>runtime</scope>
37 </dependency>
38 <dependency>
39 <groupId>org.springframework.boot</groupId>
40 <artifactId>spring-boot-starter-test</artifactId>
41 <scope>test</scope>
42 </dependency>
43 <dependency>
44 <groupId>org.springframework.security</groupId>
45 <artifactId>spring-security-test</artifactId>
46 <scope>test</scope>
47 </dependency>
48 <dependency>
49 <groupId>org.projectlombok</groupId>
50 <artifactId>lombok</artifactId>
51 <version>1.18.24</version>
52 <scope>provided</scope>
53 </dependency>
54 <dependency>
55 <groupId>org.springframework.boot</groupId>
56 <artifactId>spring-boot-starter-mail</artifactId>
57 <version>2.7.2</version>
58 </dependency>
59 <dependency>
60 <groupId>com.voodoodyne.jackson.jsog</groupId>
61 <artifactId>jackson-jsog</artifactId>
62 <version>1.1.2</version>
63 <scope>compile</scope>
64 </dependency>
65 </dependencies>
66
67 <build>
68 <plugins>
69 <plugin>
70 <groupId>org.springframework.boot</groupId>
71 <artifactId>spring-boot-maven-plugin</artifactId>
72 </plugin>
73 </plugins>
74 </build>
75
76</project>
Note: See TracBrowser for help on using the repository browser.