source: pom.xml

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

All 3 main use cases implemented.

  1. Starting a commute
  2. Writing a ticket
  3. Starting an instance of a Bus Line
  • Property mode set to 100644
File size: 3.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>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>com.jcraft</groupId>
22 <artifactId>jsch</artifactId>
23 <version>0.1.55</version>
24 </dependency>
25 <dependency>
26 <groupId>org.springframework.boot</groupId>
27 <artifactId>spring-boot-starter-data-jpa</artifactId>
28 </dependency>
29 <dependency>
30 <groupId>org.springframework.boot</groupId>
31 <artifactId>spring-boot-starter-security</artifactId>
32 </dependency>
33 <dependency>
34 <groupId>org.springframework.boot</groupId>
35 <artifactId>spring-boot-starter-thymeleaf</artifactId>
36 </dependency>
37 <dependency>
38 <groupId>org.springframework.boot</groupId>
39 <artifactId>spring-boot-starter-web</artifactId>
40 </dependency>
41 <dependency>
42 <groupId>org.thymeleaf.extras</groupId>
43 <artifactId>thymeleaf-extras-springsecurity6</artifactId>
44 </dependency>
45
46 <dependency>
47 <groupId>org.springframework.boot</groupId>
48 <artifactId>spring-boot-starter-data-jpa</artifactId>
49 </dependency>
50
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-test</artifactId>
65 <scope>test</scope>
66 </dependency>
67 <dependency>
68 <groupId>org.springframework.security</groupId>
69 <artifactId>spring-security-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 <configuration>
80 <excludes>
81 <exclude>
82 <groupId>org.projectlombok</groupId>
83 <artifactId>lombok</artifactId>
84 </exclude>
85 </excludes>
86 </configuration>
87 </plugin>
88 </plugins>
89 </build>
90
91</project>
Note: See TracBrowser for help on using the repository browser.