source: imaps-backend/backendRender/pom.xml@ d565449

main
Last change on this file since d565449 was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago

Update repo after prototype presentation

  • Property mode set to 100644
File size: 4.3 KB
RevLine 
[d565449]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.3.3</version>
9 <relativePath/> <!-- lookup parent from repository -->
10 </parent>
11 <groupId>internettehnologii.imaps</groupId>
12 <artifactId>backendRender</artifactId>
13 <version>0.0.1-SNAPSHOT</version>
14 <packaging>war</packaging>
15 <name>backendRender</name>
16 <description>Backend api for rendering an indoor map</description>
17 <url/>
18 <licenses>
19 <license/>
20 </licenses>
21 <developers>
22 <developer/>
23 </developers>
24 <scm>
25 <connection/>
26 <developerConnection/>
27 <tag/>
28 <url/>
29 </scm>
30 <properties>
31 <java.version>17</java.version>
32 </properties>
33 <dependencies>
34 <dependency>
35 <groupId>org.springframework.boot</groupId>
36 <artifactId>spring-boot-starter-thymeleaf</artifactId>
37 </dependency>
38 <dependency>
39 <groupId>org.springframework.boot</groupId>
40 <artifactId>spring-boot-starter-web</artifactId>
41 </dependency>
42 <dependency>
43 <groupId>org.springframework.session</groupId>
44 <artifactId>spring-session-core</artifactId>
45 </dependency>
46
47 <dependency>
48 <groupId>org.springframework.boot</groupId>
49 <artifactId>spring-boot-devtools</artifactId>
50 <scope>runtime</scope>
51 <optional>true</optional>
52 </dependency>
53 <dependency>
54 <groupId>org.postgresql</groupId>
55 <artifactId>postgresql</artifactId>
56 <scope>runtime</scope>
57 </dependency>
58 <dependency>
59 <groupId>org.springframework.boot</groupId>
60 <artifactId>spring-boot-starter-tomcat</artifactId>
61 <scope>provided</scope>
62 </dependency>
63 <dependency>
64 <groupId>org.springframework.boot</groupId>
65 <artifactId>spring-boot-starter-test</artifactId>
66 <scope>test</scope>
67 </dependency>
68 <dependency>
69 <groupId>org.springframework.boot</groupId>
70 <artifactId>spring-boot-starter-webflux</artifactId>
71 </dependency>
72 <dependency>
73 <groupId>io.projectreactor</groupId>
74 <artifactId>reactor-test</artifactId>
75 <scope>test</scope>
76 </dependency>
77 <dependency>
78 <groupId>com.google.code.gson</groupId>
79 <artifactId>gson</artifactId>
80 <version>2.10.1</version>
81 </dependency>
82 <dependency>
83 <groupId>org.springframework.boot</groupId>
84 <artifactId>spring-boot-starter-data-jpa</artifactId>
85 </dependency>
86 <dependency>
87 <groupId>org.springframework.boot</groupId>
88 <artifactId>spring-boot-starter-security</artifactId>
89 </dependency>
90 <dependency>
91 <groupId>org.springframework.security</groupId>
92 <artifactId>spring-security-test</artifactId>
93 <scope>test</scope>
94 </dependency>
95 <dependency>
96 <groupId>org.thymeleaf.extras</groupId>
97 <artifactId>thymeleaf-extras-springsecurity6</artifactId>
98 </dependency>
99 <dependency>
100 <groupId>org.projectlombok</groupId>
101 <artifactId>lombok</artifactId>
102 <optional>true</optional>
103 </dependency>
104
105 <dependency>
106 <groupId>io.jsonwebtoken</groupId>
107 <artifactId>jjwt-api</artifactId>
108 <version>0.12.5</version>
109 </dependency>
110 <dependency>
111 <groupId>io.jsonwebtoken</groupId>
112 <artifactId>jjwt-impl</artifactId>
113 <version>0.12.5</version>
114 <scope>runtime</scope>
115 </dependency>
116 <dependency>
117 <groupId>io.jsonwebtoken</groupId>
118 <artifactId>jjwt-jackson</artifactId>
119 <version>0.12.5</version>
120 <scope>runtime</scope>
121 </dependency>
122 <dependency>
123 <groupId>com.googlecode.json-simple</groupId>
124 <artifactId>json-simple</artifactId>
125 <version>1.1.1</version>
126 </dependency>
127
128 <dependency>
129 <groupId>org.junit.jupiter</groupId>
130 <artifactId>junit-jupiter-api</artifactId>
131 <version>5.9.0</version>
132 <scope>test</scope>
133 </dependency>
134 <dependency>
135 <groupId>org.junit.jupiter</groupId>
136 <artifactId>junit-jupiter-engine</artifactId>
137 <version>5.9.0</version>
138 <scope>test</scope>
139 </dependency>
140
141 <!-- AssertJ for fluent assertions -->
142 <dependency>
143 <groupId>org.assertj</groupId>
144 <artifactId>assertj-core</artifactId>
145 <version>3.23.1</version>
146 <scope>test</scope>
147 </dependency>
148
149
150
151
152 </dependencies>
153
154 <build>
155 <plugins>
156 <plugin>
157 <groupId>org.springframework.boot</groupId>
158 <artifactId>spring-boot-maven-plugin</artifactId>
159 </plugin>
160 </plugins>
161 </build>
162
163</project>
Note: See TracBrowser for help on using the repository browser.