source: sources/app/pom.xml@ 9dd526f

Last change on this file since 9dd526f was 9dd526f, checked in by andrejTavchioski <andrej.tavchioski@…>, 2 years ago

backend refactoring

  • Property mode set to 100644
File size: 4.4 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>2.4.5</version>
9 <relativePath/> <!-- lookup parent from repository -->
10 </parent>
11 <groupId>park</groupId>
12 <artifactId>ParkUp</artifactId>
13 <version>0.0.1-SNAPSHOT</version>
14 <name>ParkUp</name>
15 <description>Demo project for Spring Boot</description>
16 <properties>
17 <java.version>11</java.version>
18 </properties>
19 <dependencies>
20 <dependency>
21 <groupId>org.springframework.boot</groupId>
22 <artifactId>spring-boot-starter-data-jdbc</artifactId>
23 </dependency>
24 <dependency>
25 <groupId>org.springframework.boot</groupId>
26 <artifactId>spring-boot-starter-data-jpa</artifactId>
27 </dependency>
28 <dependency>
29 <groupId>org.springframework.boot</groupId>
30 <artifactId>spring-boot-starter-jdbc</artifactId>
31 </dependency>
32 <dependency>
33 <groupId>org.springframework.boot</groupId>
34 <artifactId>spring-boot-starter-oauth2-client</artifactId>
35 </dependency>
36 <dependency>
37 <groupId>org.springframework.boot</groupId>
38 <artifactId>spring-boot-starter-oauth2-resource-server</artifactId>
39 </dependency>
40 <dependency>
41 <groupId>org.springframework.boot</groupId>
42 <artifactId>spring-boot-starter-security</artifactId>
43 </dependency>
44 <dependency>
45 <groupId>org.springframework.boot</groupId>
46 <artifactId>spring-boot-starter-web</artifactId>
47 </dependency>
48 <dependency>
49 <groupId>org.springframework.boot</groupId>
50 <artifactId>spring-boot-starter-web-services</artifactId>
51 </dependency>
52
53 <dependency>
54 <groupId>org.springframework.boot</groupId>
55 <artifactId>spring-boot-devtools</artifactId>
56 <scope>runtime</scope>
57 <optional>true</optional>
58 </dependency>
59 <dependency>
60 <groupId>mysql</groupId>
61 <artifactId>mysql-connector-java</artifactId>
62 <scope>runtime</scope>
63 </dependency>
64 <dependency>
65 <groupId>org.postgresql</groupId>
66 <artifactId>postgresql</artifactId>
67 <scope>runtime</scope>
68 </dependency>
69 <dependency>
70 <groupId>org.springframework.boot</groupId>
71 <artifactId>spring-boot-starter-test</artifactId>
72 <scope>test</scope>
73 </dependency>
74 <dependency>
75 <groupId>org.springframework.security</groupId>
76 <artifactId>spring-security-test</artifactId>
77 <scope>test</scope>
78 </dependency>
79
80 <dependency>
81 <groupId>org.hibernate</groupId>
82 <artifactId>hibernate-core</artifactId>
83 <version>5.4.31.Final</version>
84 </dependency>
85
86 <dependency>
87 <groupId>com.zaxxer</groupId>
88 <artifactId>HikariCP</artifactId>
89 <version>3.4.5</version>
90 </dependency>
91
92 <dependency>
93 <groupId>org.assertj</groupId>
94 <artifactId>assertj-core</artifactId>
95 <version>3.11.1</version>
96 <scope>test</scope>
97 </dependency>
98
99
100 <dependency>
101 <groupId>org.springframework.boot</groupId>
102 <artifactId>spring-boot-starter-mail</artifactId>
103 </dependency>
104
105 <dependency>
106 <groupId>com.auth0</groupId>
107 <artifactId>java-jwt</artifactId>
108 <version>3.18.3</version>
109 </dependency>
110
111 <dependency>
112 <groupId>org.springframework</groupId>
113 <artifactId>spring-context-support</artifactId>
114 <version>5.2.8.RELEASE</version>
115 </dependency>
116
117 </dependencies>
118
119 <build>
120 <plugins>
121 <plugin>
122 <groupId>org.springframework.boot</groupId>
123 <artifactId>spring-boot-maven-plugin</artifactId>
124 </plugin>
125 </plugins>
126 </build>
127
128</project>
Note: See TracBrowser for help on using the repository browser.