source: backend/pom.xml@ 5c20c64

Last change on this file since 5c20c64 was 3ebe47c, checked in by Andrej <asumanovski@…>, 5 months ago

Made authentication on frontend and backend

  • Property mode set to 100644
File size: 4.8 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>4.0.2</version>
9 <relativePath/> <!-- lookup parent from repository -->
10 </parent>
11 <groupId>com.trekr</groupId>
12 <artifactId>backend</artifactId>
13 <version>0.0.1-SNAPSHOT</version>
14 <name>backend</name>
15 <description>backend</description>
16 <url/>
17 <licenses>
18 <license/>
19 </licenses>
20 <developers>
21 <developer/>
22 </developers>
23 <scm>
24 <connection/>
25 <developerConnection/>
26 <tag/>
27 <url/>
28 </scm>
29 <properties>
30 <java.version>17</java.version>
31 </properties>
32 <dependencies>
33 <dependency>
34 <groupId>io.github.cdimascio</groupId>
35 <artifactId>dotenv-java</artifactId>
36 <version>3.0.0</version>
37 </dependency>
38 <dependency>
39 <groupId>org.springframework.boot</groupId>
40 <artifactId>spring-boot-starter-data-jpa</artifactId>
41 </dependency>
42 <dependency>
43 <groupId>org.springframework.boot</groupId>
44 <artifactId>spring-boot-starter-security</artifactId>
45 </dependency>
46 <dependency>
47 <groupId>org.springframework.boot</groupId>
48 <artifactId>spring-boot-starter-validation</artifactId>
49 </dependency>
50 <dependency>
51 <groupId>org.springframework.boot</groupId>
52 <artifactId>spring-boot-starter-webmvc</artifactId>
53 </dependency>
54 <dependency>
55 <groupId>io.jsonwebtoken</groupId>
56 <artifactId>jjwt-api</artifactId>
57 <version>0.12.6</version>
58 </dependency>
59 <dependency>
60 <groupId>io.jsonwebtoken</groupId>
61 <artifactId>jjwt-impl</artifactId>
62 <version>0.12.6</version>
63 <scope>runtime</scope>
64 </dependency>
65 <dependency>
66 <groupId>io.jsonwebtoken</groupId>
67 <artifactId>jjwt-jackson</artifactId>
68 <version>0.12.6</version>
69 <scope>runtime</scope>
70 </dependency>
71 <dependency>
72 <groupId>org.postgresql</groupId>
73 <artifactId>postgresql</artifactId>
74 <scope>runtime</scope>
75 </dependency>
76 <dependency>
77 <groupId>org.projectlombok</groupId>
78 <artifactId>lombok</artifactId>
79 <optional>true</optional>
80 </dependency>
81 <dependency>
82 <groupId>org.springframework.boot</groupId>
83 <artifactId>spring-boot-starter-data-jpa-test</artifactId>
84 <scope>test</scope>
85 </dependency>
86 <dependency>
87 <groupId>org.springframework.boot</groupId>
88 <artifactId>spring-boot-starter-security-test</artifactId>
89 <scope>test</scope>
90 </dependency>
91 <dependency>
92 <groupId>org.springframework.boot</groupId>
93 <artifactId>spring-boot-starter-validation-test</artifactId>
94 <scope>test</scope>
95 </dependency>
96 <dependency>
97 <groupId>org.springframework.boot</groupId>
98 <artifactId>spring-boot-starter-webmvc-test</artifactId>
99 <scope>test</scope>
100 </dependency>
101
102 <dependency>
103 <groupId>com.h2database</groupId>
104 <artifactId>h2</artifactId>
105 <scope>test</scope>
106 </dependency>
107 </dependencies>
108
109 <build>
110 <plugins>
111 <plugin>
112 <groupId>org.apache.maven.plugins</groupId>
113 <artifactId>maven-compiler-plugin</artifactId>
114 <configuration>
115 <annotationProcessorPaths>
116 <path>
117 <groupId>org.projectlombok</groupId>
118 <artifactId>lombok</artifactId>
119 </path>
120 </annotationProcessorPaths>
121 </configuration>
122 </plugin>
123 <plugin>
124 <groupId>org.springframework.boot</groupId>
125 <artifactId>spring-boot-maven-plugin</artifactId>
126 <configuration>
127 <excludes>
128 <exclude>
129 <groupId>org.projectlombok</groupId>
130 <artifactId>lombok</artifactId>
131 </exclude>
132 </excludes>
133 </configuration>
134 </plugin>
135 </plugins>
136 </build>
137
138</project>
Note: See TracBrowser for help on using the repository browser.