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

Last change on this file since 9ff45d6 was ce6ad22, checked in by DavidTrajkovski <davidtrajkovski11@…>, 3 years ago

v1 initial prototype

  • 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 <dependency>
100 <groupId>org.springframework.boot</groupId>
101 <artifactId>spring-boot-starter-security</artifactId>
102 </dependency>
103
104 <dependency>
105 <groupId>org.springframework.boot</groupId>
106 <artifactId>spring-boot-starter-mail</artifactId>
107 </dependency>
108
109 <dependency>
110 <groupId>org.springframework</groupId>
111 <artifactId>spring-context-support</artifactId>
112 <version>5.2.8.RELEASE</version>
113 </dependency>
114
115 </dependencies>
116
117 <build>
118 <plugins>
119 <plugin>
120 <groupId>org.springframework.boot</groupId>
121 <artifactId>spring-boot-maven-plugin</artifactId>
122 </plugin>
123 </plugins>
124 </build>
125
126</project>
Note: See TracBrowser for help on using the repository browser.