source: backend/pom.xml@ 8c01a1f

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

Made investing tab and adding assets, starting training tracking and adding training sessions

  • Property mode set to 100644
File size: 4.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>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
55 <dependency>
56 <groupId>com.fasterxml.jackson.core</groupId>
57 <artifactId>jackson-databind</artifactId>
58 </dependency>
59 <dependency>
60 <groupId>io.jsonwebtoken</groupId>
61 <artifactId>jjwt-api</artifactId>
62 <version>0.12.6</version>
63 </dependency>
64 <dependency>
65 <groupId>io.jsonwebtoken</groupId>
66 <artifactId>jjwt-impl</artifactId>
67 <version>0.12.6</version>
68 <scope>runtime</scope>
69 </dependency>
70 <dependency>
71 <groupId>io.jsonwebtoken</groupId>
72 <artifactId>jjwt-jackson</artifactId>
73 <version>0.12.6</version>
74 <scope>runtime</scope>
75 </dependency>
76 <dependency>
77 <groupId>org.postgresql</groupId>
78 <artifactId>postgresql</artifactId>
79 <scope>runtime</scope>
80 </dependency>
81 <dependency>
82 <groupId>org.projectlombok</groupId>
83 <artifactId>lombok</artifactId>
84 <optional>true</optional>
85 </dependency>
86 <dependency>
87 <groupId>org.springframework.boot</groupId>
88 <artifactId>spring-boot-starter-data-jpa-test</artifactId>
89 <scope>test</scope>
90 </dependency>
91 <dependency>
92 <groupId>org.springframework.boot</groupId>
93 <artifactId>spring-boot-starter-security-test</artifactId>
94 <scope>test</scope>
95 </dependency>
96 <dependency>
97 <groupId>org.springframework.boot</groupId>
98 <artifactId>spring-boot-starter-validation-test</artifactId>
99 <scope>test</scope>
100 </dependency>
101 <dependency>
102 <groupId>org.springframework.boot</groupId>
103 <artifactId>spring-boot-starter-webmvc-test</artifactId>
104 <scope>test</scope>
105 </dependency>
106
107 <dependency>
108 <groupId>com.h2database</groupId>
109 <artifactId>h2</artifactId>
110 <scope>test</scope>
111 </dependency>
112 </dependencies>
113
114 <build>
115 <plugins>
116 <plugin>
117 <groupId>org.apache.maven.plugins</groupId>
118 <artifactId>maven-compiler-plugin</artifactId>
119 <configuration>
120 <annotationProcessorPaths>
121 <path>
122 <groupId>org.projectlombok</groupId>
123 <artifactId>lombok</artifactId>
124 </path>
125 </annotationProcessorPaths>
126 </configuration>
127 </plugin>
128 <plugin>
129 <groupId>org.springframework.boot</groupId>
130 <artifactId>spring-boot-maven-plugin</artifactId>
131 <configuration>
132 <excludes>
133 <exclude>
134 <groupId>org.projectlombok</groupId>
135 <artifactId>lombok</artifactId>
136 </exclude>
137 </excludes>
138 </configuration>
139 </plugin>
140 </plugins>
141 </build>
142
143</project>
Note: See TracBrowser for help on using the repository browser.