source: jobvista-backend/pom.xml@ 4d97b63

main
Last change on this file since 4d97b63 was 4d97b63, checked in by 223021 <daniel.ilievski.2@…>, 4 weeks ago

Implemented Google login, additional file uploads, response messages and email notifications

  • Property mode set to 100644
File size: 4.6 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.5</version>
9 <relativePath/> <!-- lookup parent from repository -->
10 </parent>
11 <groupId>mk.ukim.finki.predmeti.internettehnologii</groupId>
12 <artifactId>jobvista-backend</artifactId>
13 <version>0.0.1-SNAPSHOT</version>
14 <packaging>war</packaging>
15 <name>jobvista-backend</name>
16 <description>Demo project for Spring Boot</description>
17 <properties>
18 <java.version>17</java.version>
19 </properties>
20 <dependencies>
21 <dependency>
22 <groupId>org.springframework.boot</groupId>
23 <artifactId>spring-boot-starter-data-jpa</artifactId>
24 </dependency>
25 <dependency>
26 <groupId>org.springframework.boot</groupId>
27 <artifactId>spring-boot-starter-security</artifactId>
28 </dependency>
29 <dependency>
30 <groupId>org.springframework.boot</groupId>
31 <artifactId>spring-boot-starter-web</artifactId>
32 </dependency>
33
34 <dependency>
35 <groupId>org.springframework.boot</groupId>
36 <artifactId>spring-boot-devtools</artifactId>
37 <scope>runtime</scope>
38 <optional>true</optional>
39 </dependency>
40 <dependency>
41 <groupId>org.postgresql</groupId>
42 <artifactId>postgresql</artifactId>
43 <scope>runtime</scope>
44 </dependency>
45 <dependency>
46 <groupId>org.projectlombok</groupId>
47 <artifactId>lombok</artifactId>
48 <optional>true</optional>
49 </dependency>
50 <dependency>
51 <groupId>org.springframework.boot</groupId>
52 <artifactId>spring-boot-starter-tomcat</artifactId>
53 <scope>provided</scope>
54 </dependency>
55 <dependency>
56 <groupId>org.springframework.boot</groupId>
57 <artifactId>spring-boot-starter-test</artifactId>
58 <scope>test</scope>
59 </dependency>
60 <dependency>
61 <groupId>org.springframework.security</groupId>
62 <artifactId>spring-security-test</artifactId>
63 <scope>test</scope>
64 </dependency>
65 <!-- other -->
66 <dependency>
67 <groupId>org.springframework.boot</groupId>
68 <artifactId>spring-boot-starter-oauth2-client</artifactId>
69 </dependency>
70
71 <dependency>
72 <groupId>org.springframework.boot</groupId>
73 <artifactId>spring-boot-starter-mail</artifactId>
74 </dependency>
75
76 <dependency>
77 <groupId>org.springframework.security</groupId>
78 <artifactId>spring-security-oauth2-jose</artifactId>
79 </dependency>
80
81 <dependency>
82 <groupId>com.google.api-client</groupId>
83 <artifactId>google-api-client</artifactId>
84 <version>2.5.1</version>
85 </dependency>
86
87 <!-- https://mvnrepository.com/artifact/com.google.oauth-client/google-oauth-client -->
88 <dependency>
89 <groupId>com.google.oauth-client</groupId>
90 <artifactId>google-oauth-client-jetty</artifactId>
91 <version>1.34.1</version>
92 </dependency>
93
94 <dependency>
95 <groupId>com.google.http-client</groupId>
96 <artifactId>google-http-client-jackson2</artifactId>
97 <version>1.32.1</version>
98 </dependency>
99
100
101
102
103
104
105 <!-- https://mvnrepository.com/artifact/jakarta.validation/jakarta.validation-api -->
106 <dependency>
107 <groupId>jakarta.validation</groupId>
108 <artifactId>jakarta.validation-api</artifactId>
109 <version>3.0.2</version>
110 </dependency>
111
112 <!-- https://mvnrepository.com/artifact/io.jsonwebtoken/jjwt-api -->
113 <dependency>
114 <groupId>io.jsonwebtoken</groupId>
115 <artifactId>jjwt-api</artifactId>
116 <version>0.11.5</version>
117 </dependency>
118 <!-- https://mvnrepository.com/artifact/io.jsonwebtoken/jjwt-impl -->
119 <dependency>
120 <groupId>io.jsonwebtoken</groupId>
121 <artifactId>jjwt-impl</artifactId>
122 <version>0.11.5</version>
123 <scope>runtime</scope>
124 </dependency>
125 <!-- https://mvnrepository.com/artifact/io.jsonwebtoken/jjwt-jackson -->
126 <dependency>
127 <groupId>io.jsonwebtoken</groupId>
128 <artifactId>jjwt-jackson</artifactId>
129 <version>0.11.5</version>
130 <scope>runtime</scope>
131 </dependency>
132 <dependency>
133 <groupId>org.mapstruct</groupId>
134 <artifactId>mapstruct</artifactId>
135 <version>1.5.5.Final</version>
136 </dependency>
137 <dependency>
138 <groupId>org.mapstruct</groupId>
139 <artifactId>mapstruct-processor</artifactId>
140 <version>1.5.5.Final</version>
141 </dependency>
142 </dependencies>
143
144 <build>
145 <plugins>
146 <plugin>
147 <groupId>org.springframework.boot</groupId>
148 <artifactId>spring-boot-maven-plugin</artifactId>
149 <configuration>
150 <excludes>
151 <exclude>
152 <groupId>org.projectlombok</groupId>
153 <artifactId>lombok</artifactId>
154 </exclude>
155 </excludes>
156 </configuration>
157 </plugin>
158 </plugins>
159 </build>
160
161</project>
Note: See TracBrowser for help on using the repository browser.