source: backend/pom.xml@ 140d098

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

Add auth

  • 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>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 </dependencies>
102
103 <build>
104 <plugins>
105 <plugin>
106 <groupId>org.apache.maven.plugins</groupId>
107 <artifactId>maven-compiler-plugin</artifactId>
108 <configuration>
109 <annotationProcessorPaths>
110 <path>
111 <groupId>org.projectlombok</groupId>
112 <artifactId>lombok</artifactId>
113 </path>
114 </annotationProcessorPaths>
115 </configuration>
116 </plugin>
117 <plugin>
118 <groupId>org.springframework.boot</groupId>
119 <artifactId>spring-boot-maven-plugin</artifactId>
120 <configuration>
121 <excludes>
122 <exclude>
123 <groupId>org.projectlombok</groupId>
124 <artifactId>lombok</artifactId>
125 </exclude>
126 </excludes>
127 </configuration>
128 </plugin>
129 </plugins>
130 </build>
131
132</project>
Note: See TracBrowser for help on using the repository browser.