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 | <dependency>
|
---|
33 | <groupId>org.postgresql</groupId>
|
---|
34 | <artifactId>postgresql</artifactId>
|
---|
35 | <scope>runtime</scope>
|
---|
36 | </dependency>
|
---|
37 | <dependency>
|
---|
38 | <groupId>org.springframework.boot</groupId>
|
---|
39 | <artifactId>spring-boot-starter-test</artifactId>
|
---|
40 | <scope>test</scope>
|
---|
41 | </dependency>
|
---|
42 | <dependency>
|
---|
43 | <groupId>org.springframework.security</groupId>
|
---|
44 | <artifactId>spring-security-test</artifactId>
|
---|
45 | <scope>test</scope>
|
---|
46 | </dependency>
|
---|
47 | <dependency>
|
---|
48 | <groupId>org.projectlombok</groupId>
|
---|
49 | <artifactId>lombok</artifactId>
|
---|
50 | <version>1.18.24</version>
|
---|
51 | <scope>provided</scope>
|
---|
52 | </dependency>
|
---|
53 | <dependency>
|
---|
54 | <groupId>org.springframework.boot</groupId>
|
---|
55 | <artifactId>spring-boot-starter-mail</artifactId>
|
---|
56 | <version>2.7.2</version>
|
---|
57 | </dependency>
|
---|
58 | <dependency>
|
---|
59 | <groupId>com.voodoodyne.jackson.jsog</groupId>
|
---|
60 | <artifactId>jackson-jsog</artifactId>
|
---|
61 | <version>1.1.2</version>
|
---|
62 | <scope>compile</scope>
|
---|
63 | </dependency>
|
---|
64 |
|
---|
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>
|
---|