source: pom.xml@ 24c39f9

Last change on this file since 24c39f9 was 24c39f9, checked in by ppaunovski <paunovskipavel@…>, 6 months ago

initial classes, no inheritance yet

  • Property mode set to 100644
File size: 2.9 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.2.1</version>
9 <relativePath/> <!-- lookup parent from repository -->
10 </parent>
11 <groupId>mk.ukim.finki</groupId>
12 <artifactId>BusNGo</artifactId>
13 <version>0.0.1-SNAPSHOT</version>
14 <name>BusNGo</name>
15 <description>BusNGo</description>
16 <properties>
17 <java.version>21</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-thymeleaf</artifactId>
31 </dependency>
32 <dependency>
33 <groupId>org.springframework.boot</groupId>
34 <artifactId>spring-boot-starter-web</artifactId>
35 </dependency>
36 <dependency>
37 <groupId>org.thymeleaf.extras</groupId>
38 <artifactId>thymeleaf-extras-springsecurity6</artifactId>
39 </dependency>
40
41 <dependency>
42 <groupId>org.postgresql</groupId>
43 <artifactId>postgresql</artifactId>
44 <scope>runtime</scope>
45 </dependency>
46 <dependency>
47 <groupId>org.projectlombok</groupId>
48 <artifactId>lombok</artifactId>
49 <optional>true</optional>
50 </dependency>
51 <dependency>
52 <groupId>org.springframework.boot</groupId>
53 <artifactId>spring-boot-starter-test</artifactId>
54 <scope>test</scope>
55 </dependency>
56<!-- <dependency>-->
57<!-- <groupId>org.springframework.security</groupId>-->
58<!-- <artifactId>spring-security-test</artifactId>-->
59<!-- <scope>test</scope>-->
60<!-- </dependency>-->
61 </dependencies>
62
63 <build>
64 <plugins>
65 <plugin>
66 <groupId>org.springframework.boot</groupId>
67 <artifactId>spring-boot-maven-plugin</artifactId>
68 <configuration>
69 <excludes>
70 <exclude>
71 <groupId>org.projectlombok</groupId>
72 <artifactId>lombok</artifactId>
73 </exclude>
74 </excludes>
75 </configuration>
76 </plugin>
77 </plugins>
78 </build>
79
80</project>
Note: See TracBrowser for help on using the repository browser.