source: pom.xml

Last change on this file was 77205be, checked in by gjoko kostadinov <gjokokostadinov@…>, 5 months ago

Add entire code

  • Property mode set to 100755
File size: 3.0 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.6</version>
9 <relativePath/> <!-- lookup parent from repository -->
10 </parent>
11 <groupId>edu.gjoko</groupId>
12 <artifactId>schedlr</artifactId>
13 <version>0.0.1-SNAPSHOT</version>
14 <packaging>war</packaging>
15 <name>schedlr</name>
16 <description>schedlr</description>
17 <properties>
18 <java.version>17</java.version>
19 <org.modelmapper.version>3.2.0</org.modelmapper.version>
20 </properties>
21 <dependencies>
22 <dependency>
23 <groupId>org.springframework.boot</groupId>
24 <artifactId>spring-boot-starter-data-jpa</artifactId>
25 </dependency>
26 <dependency>
27 <groupId>org.springframework.boot</groupId>
28 <artifactId>spring-boot-starter-jdbc</artifactId>
29 </dependency>
30 <dependency>
31 <groupId>org.modelmapper</groupId>
32 <artifactId>modelmapper</artifactId>
33 <version>${org.modelmapper.version}</version>
34 </dependency>
35 <dependency>
36 <groupId>org.springframework.boot</groupId>
37 <artifactId>spring-boot-starter-thymeleaf</artifactId>
38 </dependency>
39 <dependency>
40 <groupId>org.springframework.boot</groupId>
41 <artifactId>spring-boot-starter-security</artifactId>
42 </dependency>
43 <dependency>
44 <groupId>org.thymeleaf.extras</groupId>
45 <artifactId>thymeleaf-extras-springsecurity5</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.springframework.boot</groupId>
59 <artifactId>spring-boot-starter-tomcat</artifactId>
60 <scope>provided</scope>
61 </dependency>
62 <dependency>
63 <groupId>org.projectlombok</groupId>
64 <artifactId>lombok</artifactId>
65 <scope>provided</scope>
66 </dependency>
67 <dependency>
68 <groupId>org.springframework.boot</groupId>
69 <artifactId>spring-boot-starter-test</artifactId>
70 <scope>test</scope>
71 </dependency>
72 </dependencies>
73
74 <build>
75 <plugins>
76 <plugin>
77 <groupId>org.springframework.boot</groupId>
78 <artifactId>spring-boot-maven-plugin</artifactId>
79 </plugin>
80 </plugins>
81 </build>
82
83</project>
Note: See TracBrowser for help on using the repository browser.